From 86c1d15b110dadbf4e9f8eb42703467ce0c531e7 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Tue, 3 Feb 2026 00:09:57 +0100 Subject: [PATCH] Fixed so that the angle icon indicating expand/collapse for a trigger config actually flips when clicked --- 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 42252362..34543086 100644 --- a/module/applications/sheets-configs/action-base-config.mjs +++ b/module/applications/sheets-configs/action-base-config.mjs @@ -314,7 +314,7 @@ export default class DHActionBaseConfig extends DaggerheartSheet(ApplicationV2) const index = Number.parseInt(button.dataset.index); const toggle = (element, codeMirror) => { codeMirror.classList.toggle('revealed'); - const button = element.querySelector('a > i'); + const button = element.querySelector('.expand-trigger > i'); button.classList.toggle('fa-angle-up'); button.classList.toggle('fa-angle-down'); };