Skip to content

Commit

Permalink
fix(design): show rows count even if it's 0
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Steffens <florian.steffens@nextcloud.com>
  • Loading branch information
Florian Steffens committed Sep 14, 2023
1 parent 7a093d5 commit 11ac6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/partials/SearchAndSelectOption.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<NcUserBubble v-if="owner"
:user="owner"
:display-name="ownerDisplayName ?? owner" />&nbsp;
<NcCounterBubble v-if="rowsCount">
<NcCounterBubble v-if="rowsCount !== null">
{{ n('tables', '{nb} row', '{nb} rows', rowsCount, { nb: rowsCount}) }}
</NcCounterBubble>
<div v-if="subline" class="subline p span">
Expand Down

0 comments on commit 11ac6bf

Please sign in to comment.