mirror of
https://github.com/alireza0/s-ui.git
synced 2026-08-31 08:26:59 +00:00
fix zero inbounds in clients
This commit is contained in:
parent
af2861f2c9
commit
c1c05c4863
1 changed files with 2 additions and 2 deletions
|
|
@ -45,10 +45,10 @@
|
|||
<v-row>
|
||||
<v-col>{{ $t('pages.inbounds') }}</v-col>
|
||||
<v-col dir="ltr">
|
||||
<v-tooltip activator="parent" dir="ltr" location="bottom">
|
||||
<v-tooltip activator="parent" dir="ltr" location="bottom" v-if="item.inbounds != ''">
|
||||
<span v-for="i in item.inbounds.split(',')">{{ i }}<br /></span>
|
||||
</v-tooltip>
|
||||
{{ item.inbounds.split(',').length }}
|
||||
{{ item.inbounds != '' ? item.inbounds.split(',').length : 0 }}
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue