From 34c7dbed87ff8ddb494fe252e10474b8a9e5e21e Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 22 Feb 2024 19:34:16 -0700 Subject: [PATCH] Pull the generic data for the aspect sheet (closes #81) --- module/sheets/Items/AspectSheet.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/sheets/Items/AspectSheet.mjs b/module/sheets/Items/AspectSheet.mjs index 6eeb4d7..c43a01c 100644 --- a/module/sheets/Items/AspectSheet.mjs +++ b/module/sheets/Items/AspectSheet.mjs @@ -22,7 +22,7 @@ export class AspectSheet extends GenericItemSheet { }; async getData() { - const ctx = {}; + const ctx = await super.getData(); return ctx; }; };