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">
|
<div class="workspace-query-results p-relative column col-12">
|
||||||
<BaseLoader v-if="isQuering" />
|
<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
|
<WorkspaceTabQueryTable
|
||||||
v-if="results"
|
v-if="results"
|
||||||
ref="queryTable"
|
ref="queryTable"
|
||||||
|
|
|
@ -339,7 +339,8 @@ export const enUS = {
|
||||||
showTableSize: 'Show table size in sidebar',
|
showTableSize: 'Show table size in sidebar',
|
||||||
showTableSizeDescription: 'MySQL/MariaDB only. Enable this option may affects performance on schema with many tables.',
|
showTableSizeDescription: 'MySQL/MariaDB only. Enable this option may affects performance on schema with many tables.',
|
||||||
searchForSchemas: 'Search for schemas',
|
searchForSchemas: 'Search for schemas',
|
||||||
switchSearchMethod: 'Switch search method'
|
switchSearchMethod: 'Switch search method',
|
||||||
|
noResultsPresent: 'No results present'
|
||||||
},
|
},
|
||||||
faker: {
|
faker: {
|
||||||
address: 'Address',
|
address: 'Address',
|
||||||
|
|
Loading…
Reference in New Issue