mirror of https://github.com/Fabio286/antares.git
feat: no table results message
This commit is contained in:
parent
74c136f833
commit
19859f45f4
|
@ -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"
|
||||
|
|
|
@ -339,7 +339,8 @@ export const enUS = {
|
|||
showTableSize: 'Show table size in sidebar',
|
||||
showTableSizeDescription: 'MySQL/MariaDB only. Enable this option may affects performance on schema with many tables.',
|
||||
searchForSchemas: 'Search for schemas',
|
||||
switchSearchMethod: 'Switch search method'
|
||||
switchSearchMethod: 'Switch search method',
|
||||
noResultsPresent: 'No results present'
|
||||
},
|
||||
faker: {
|
||||
address: 'Address',
|
||||
|
|
Loading…
Reference in New Issue