Skip to content

Commit

Permalink
feat(ui): show results even if not filtering (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd authored Aug 1, 2024
1 parent d52cb6c commit 4603b65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/lib/components/k8s/DataTable/component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@
<div class="table-header">
<span class="dark:text-white">{name}</span>
{#if isFiltering}
<span class="dark:text-gray-500">&nbsp;&nbsp;showing {$rows.length} of {$numResources} results</span>
<span class="dark:text-gray-500 pl-2">(showing {$rows.length} of {$numResources})</span>
{:else}
<span class="dark:text-gray-500 pl-2">({$numResources})</span>
{/if}
<div class="relative group">
<Information class="ml-2 w-4 h-4 text-gray-400" />
Expand Down

0 comments on commit 4603b65

Please sign in to comment.