1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: no table results message

This commit is contained in:
2023-04-27 18:11:36 +02:00
parent 74c136f833
commit 19859f45f4
2 changed files with 10 additions and 1 deletions

View File

@ -145,6 +145,14 @@
/>
<div class="workspace-query-results p-relative column col-12">
<BaseLoader v-if="isQuering" />
<div v-if="!isQuering && !results[0]?.rows.length" class="empty">
<div class="empty-icon">
<i class="mdi mdi-48px mdi-island" />
</div>
<p class="h4 empty-subtitle">
{{ t('message.noResultsPresent') }}
</p>
</div>
<WorkspaceTabQueryTable
v-if="results"
ref="queryTable"