feat(UI): display schema in data tabs

This commit is contained in:
Fabio Di Stasio 2021-07-14 12:31:12 +02:00
parent ab382dfbcd
commit 01057332b0
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@
<div v-if="hasApproximately || (page > 1 && tableInfo.rows)">
{{ $t('word.total') }}: <b>{{ tableInfo.rows | localeString }}</b> <small>({{ $t('word.approximately') }})</small>
</div>
<div v-if="workspace.breadcrumbs.database">
{{ $t('word.schema') }}: <b>{{ workspace.breadcrumbs.database }}</b>
<div class="d-flex" :title="$t('word.schema')">
<i class="mdi mdi-18px mdi-database mr-1" /><b>{{ schema }}</b>
</div>
</div>
</div>