mirror of https://github.com/Fabio286/antares.git
fix: hide table size tooltip if disabled
This commit is contained in:
parent
23d8467154
commit
2c46269cf2
|
@ -42,7 +42,7 @@
|
|||
<span v-html="highlightWord(table.name)" />
|
||||
</a>
|
||||
<div
|
||||
v-if="table.type === 'table' && table.size !== false"
|
||||
v-if="table.type === 'table' && table.size !== false && !isNaN(table.size)"
|
||||
class="table-size tooltip tooltip-left mr-1"
|
||||
:data-tooltip="formatBytes(table.size)"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue