diff --git a/apps/todo/apps/web/src/lib/components/TagStrip.svelte b/apps/todo/apps/web/src/lib/components/TagStrip.svelte index 7485a02e2..0829dff00 100644 --- a/apps/todo/apps/web/src/lib/components/TagStrip.svelte +++ b/apps/todo/apps/web/src/lib/components/TagStrip.svelte @@ -1,37 +1,31 @@ -
+
- - - {#if showTags} - - {#if tagsCtx.value.length > 0} - {#each tagsCtx.value as tag (tag.id)} - - {/each} - {/if} - - {/if} - - - - Filter: - - - - {#each priorities as priority (priority.value)} - - {/each} - - - {#if showSort && onSortChange} - - {#each sortOptions as option (option.id)} - - {/each} - {/if} - - - {#if showCompleted && onToggleCompleted} - - {/if} -
-
-{:else} - -
-
- - {#if showSearch} -
-
- - onSearchChange(e.currentTarget.value)} - placeholder={$t('filters.searchTasks')} - class="w-full pl-10 pr-8 py-2 text-sm bg-background border border-border rounded-lg outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary placeholder:text-muted-foreground transition-all" - /> - {#if searchQuery} - - {/if} -
- - {#if hasActiveFilters} - - {/if} -
- {/if} - - -
- -
- {$t('task.priority')} -
- {#each priorities as priority} - - {/each} -
-
- - - {#if showLabels} - - -
- Tags - - - {#if showLabelsDropdown} - -
(showLabelsDropdown = false)}>
-
- {#if tagsCtx.value.length === 0} -

- {$t('filters.noTagsAvailable')} -

- {:else} -
- {#each tagsCtx.value as label} - - {/each} -
- {/if} -
- {/if} -
- {/if} -
-
-
-{/if} - - diff --git a/apps/todo/apps/web/src/lib/components/board-views/BoardViewRenderer.svelte b/apps/todo/apps/web/src/lib/components/board-views/BoardViewRenderer.svelte index 820f4b9a0..5132687d4 100644 --- a/apps/todo/apps/web/src/lib/components/board-views/BoardViewRenderer.svelte +++ b/apps/todo/apps/web/src/lib/components/board-views/BoardViewRenderer.svelte @@ -1,5 +1,5 @@