Skip to content

Commit 1c70bd2

Browse files
committed
Fix issue with search breaking
1 parent 17f76cf commit 1c70bd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ts/ui/ce-app/convenient-effects-v2.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ class ConvenientEffectsV2 extends HandlebarsApplicationMixin(
10901090
const isHiddenEffects = this.#settings.showHiddenEffects;
10911091
buttonHtml.setAttribute("aria-pressed", isHiddenEffects.toString());
10921092

1093-
this.render({ parts: ["directory"] });
1093+
this.render({ parts: ["header", "directory"] });
10941094
}
10951095

10961096
static async #onToggleNestedEffects(...args: any[]): Promise<void> {
@@ -1111,7 +1111,7 @@ class ConvenientEffectsV2 extends HandlebarsApplicationMixin(
11111111
const isNestedEffects = this.#settings.showNestedEffects;
11121112
buttonHtml.setAttribute("aria-pressed", isNestedEffects.toString());
11131113

1114-
this.render({ parts: ["directory"] });
1114+
this.render({ parts: ["header", "directory"] });
11151115
}
11161116

11171117
static async #onTogglePrioritizeTargets(...args: any[]): Promise<void> {
@@ -1132,7 +1132,7 @@ class ConvenientEffectsV2 extends HandlebarsApplicationMixin(
11321132
const isPrioritizeTargets = this.#settings.prioritizeTargets;
11331133
buttonHtml.setAttribute("aria-pressed", isPrioritizeTargets.toString());
11341134

1135-
this.render({ parts: ["directory"] });
1135+
this.render({ parts: ["header", "directory"] });
11361136
}
11371137

11381138
static async #onViewBackups(...args: any[]): Promise<void> {

0 commit comments

Comments
 (0)