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 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 15:49:23 +03:00
parent d357ae3156
commit e7d24f0677
+1 -1
View File
@@ -8,7 +8,7 @@ export interface AppSettings {
const DEFAULTS: AppSettings = { const DEFAULTS: AppSettings = {
fileLoadLimit: 100, fileLoadLimit: 100,
tagRuleApplyToExisting: false tagRuleApplyToExisting: true
}; };
function load(): AppSettings { function load(): AppSettings {