Migration notifications fixed

This commit is contained in:
2026-03-19 18:49:48 -05:00
parent 4eb7650916
commit 2e2b31262b
+1 -1
View File
@@ -1731,7 +1731,7 @@ export const initStore = async () => {
const foundTagNames = new Set<string>();
store.tasks.forEach(t => t.tags?.forEach(tag => foundTagNames.add(tag)));
for (const tagName of foundTagNames) {
if (tagName === "__template__") continue;
if (tagName === "__template__" || tagName.startsWith("@") || tagName.startsWith("#")) continue;
if (!store.tagDefinitions.find(d => d.name === tagName)) {
await upsertTagDefinition(tagName, 5, undefined, document.documentElement.classList.contains("dark") ? "dark" : "light");
}