From e7d24f06773036e9502c7d24aa1252fa4defdc90 Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Thu, 11 Jun 2026 15:49:23 +0300 Subject: [PATCH] feat(frontend): default the apply-to-existing tag-rule toggle on New tag rules should retroactively apply to existing files by default, so flip the tagRuleApplyToExisting default to true. (Settings already saved in localStorage keep their stored value.) Co-Authored-By: Claude Opus 4.8 --- frontend/src/lib/stores/appSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/stores/appSettings.ts b/frontend/src/lib/stores/appSettings.ts index 833e9ea..8847805 100644 --- a/frontend/src/lib/stores/appSettings.ts +++ b/frontend/src/lib/stores/appSettings.ts @@ -8,7 +8,7 @@ export interface AppSettings { const DEFAULTS: AppSettings = { fileLoadLimit: 100, - tagRuleApplyToExisting: false + tagRuleApplyToExisting: true }; function load(): AppSettings {