From a84df2d80be99963e60fd882f8254536eea33bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20R=C3=BCmpelein?= Date: Mon, 28 Dec 2020 17:44:30 +0100 Subject: [PATCH] Fix class name on jquery. --- src/module/item/item-sheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/item/item-sheet.ts b/src/module/item/item-sheet.ts index f9cb4022..f6e95420 100644 --- a/src/module/item/item-sheet.ts +++ b/src/module/item/item-sheet.ts @@ -37,7 +37,7 @@ export class DS4ItemSheet extends ItemSheet { 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 {