removed lnking tasks to note tabs

This commit is contained in:
2026-03-13 11:35:57 -05:00
parent ff9bf7afa4
commit b276345149
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ export const TagPicker: Component<TagPickerProps> = (props) => {
const allTagNames = () => {
const definedTags = store.tagDefinitions.filter(d => !d.name.endsWith("_favorite__")).map(d => d.name);
const bucketTags = store.buckets.map(b => `@${b.name}`);
const noteTags = store.notes.map(n => `#${n.title}`);
const noteTags = store.notes
.filter(n => !(n.tags || []).some(t => t.startsWith("child-of-")))
.map(n => `#${n.title}`);
return [...new Set([...definedTags, ...bucketTags, ...noteTags])].sort();
};
+1
View File
@@ -89,6 +89,7 @@ export const noteSuggestion = {
char: '#',
items: ({ query }: { query: string }) => {
return store.notes
.filter(note => !(note.tags || []).some(t => t.startsWith("child-of-")))
.filter(note => note.title.toLowerCase().includes(query.toLowerCase()))
.map(note => ({
id: note.id,