fix zero inbounds in clients

This commit is contained in:
Alireza Ahmadi
2024-04-16 23:26:29 +02:00
parent af2861f2c9
commit c1c05c4863
+2 -2
View File
@@ -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>