From 9cbd03d3ae4d7ba6290fd55b12ca289fe9e7e0dc Mon Sep 17 00:00:00 2001 From: WBHarry Date: Wed, 23 Jul 2025 16:11:24 +0200 Subject: [PATCH] Fixed charactercreation tabs sticking after closing --- module/applications/characterCreation/characterCreation.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/module/applications/characterCreation/characterCreation.mjs b/module/applications/characterCreation/characterCreation.mjs index b48c3dec..1528b74d 100644 --- a/module/applications/characterCreation/characterCreation.mjs +++ b/module/applications/characterCreation/characterCreation.mjs @@ -270,6 +270,11 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl }); } + async _preFirstRender(_context, _options) { + this.tabGroups.primary = 'setup'; + this.tabGroups.setup = 'ancestry'; + } + async _prepareContext(_options) { const context = await super._prepareContext(_options); context.tabs = this._getTabs(this.constructor.TABS);