From 43052632a4706e2b3d05e011a11c4c4c773fd04b Mon Sep 17 00:00:00 2001 From: WBHarry Date: Wed, 24 Dec 2025 02:48:21 +0100 Subject: [PATCH] Fixed so that action context.source can be assigned to --- module/applications/sheets-configs/action-base-config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/sheets-configs/action-base-config.mjs b/module/applications/sheets-configs/action-base-config.mjs index 7190a5b7..96790a5b 100644 --- a/module/applications/sheets-configs/action-base-config.mjs +++ b/module/applications/sheets-configs/action-base-config.mjs @@ -98,7 +98,7 @@ export default class DHActionBaseConfig extends DaggerheartSheet(ApplicationV2) async _prepareContext(_options) { const context = await super._prepareContext(_options, 'action'); - context.source = this.action._source; + context.source = this.action.toObject(true); context.openSection = this.openSection; context.tabs = this._getTabs(this.constructor.TABS); context.config = CONFIG.DH;