Fix class name on jquery.

This commit is contained in:
Oliver Rümpelein 2020-12-28 17:44:30 +01:00
parent 4d00d8a481
commit a84df2d80b

View file

@ -37,7 +37,7 @@ export class DS4ItemSheet extends ItemSheet<DS4ItemDataType, DS4Item> {
setPosition(options: ApplicationPosition = {}): ApplicationPosition {
const position = super.setPosition(options);
if ("find" in this.element) {
const sheetBody = this.element.find(".sheet");
const sheetBody = this.element.find(".sheet-body");
const bodyHeight = position.height - 192;
sheetBody.css("height", bodyHeight);
} else {