We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547c4fc commit 32833daCopy full SHA for 32833da
src/lib/components/Facets/Facets.svelte
@@ -186,7 +186,7 @@
186
bind:checked={selectedGroups[group.name]}
187
bind:group={selectedGroups}
188
>
189
- <p class="font-semibold">
+ <p class="font-semibold whitespace-nowrap">
190
{group.displayName}{group.count !== undefined ? ` (${group.count})` : ''}
191
</p>
192
@@ -231,7 +231,12 @@
231
selection
232
multiple
233
234
- <p>{item.displayName} ({item.count})</p>
+ <div class="flex gap-2">
235
+ <p class="w-max grow truncate">
236
+ <span title={item.displayName}>{item.displayName}</span>
237
+ </p>
238
+ <span>({item.count})</span>
239
+ </div>
240
</TreeViewItem>
241
{/each}
242
{/if}
0 commit comments