From ba268e424554b68727311280e87b7a85ede7df21 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Tue, 26 Jan 2021 21:25:43 +0100 Subject: [PATCH] remove workaround for position type --- 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 c29c923..b5f5026 100644 --- a/src/module/item/item-sheet.ts +++ b/src/module/item/item-sheet.ts @@ -63,7 +63,7 @@ export class DS4ItemSheet extends ItemSheet { const position = super.setPosition(options); if ("find" in this.element) { const sheetBody = this.element.find(".sheet-body"); - const bodyHeight = (position.height as number) - 192; // TODO(types): remove type cast once https://github.com/kmoschcau/foundry-vtt-types/pull/214 is merged + const bodyHeight = position.height - 192; sheetBody.css("height", bodyHeight); } else { console.log("Failure setting position.");