Skip to content

Commit

Permalink
MappingBrowserTable: Show "no results" for registries with no results (
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Nov 18, 2021
1 parent b3db010 commit d41e6ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/MappingBrowserTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@
<span v-if="section.items.length < section.totalCount">
{{ section.items.length }} {{ $t("general.of") }} {{ section.totalCount.toLocaleString() }}
</span>
<span v-if="section.totalCount === 0">
{{ $t("mappingBrowser.noItems") }}
</span>
<span
v-if="!!registryHasErrored[section.registry.uri]"
v-b-tooltip.hover="{ title: $t('mappingBrowser.registryHasErrored'), delay: defaults.delay.medium }"
Expand Down

0 comments on commit d41e6ac

Please sign in to comment.