diff options
Diffstat (limited to 'web/html/xui/inbound_client_table.html')
| -rw-r--r-- | web/html/xui/inbound_client_table.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/web/html/xui/inbound_client_table.html b/web/html/xui/inbound_client_table.html index 6100cd9b..3143fe18 100644 --- a/web/html/xui/inbound_client_table.html +++ b/web/html/xui/inbound_client_table.html @@ -29,10 +29,12 @@ <a-tag v-if="!isClientEnabled(record, client.email)" color="red">{{ i18n "depleted" }}</a-tag> </template> <template slot="traffic" slot-scope="text, client"> - <a-tag color="blue">[[ sizeFormat(getUpStats(record, client.email)) ]] / [[ sizeFormat(getDownStats(record, client.email)) ]]</a-tag> + <a-tag color="blue"> + [[ sizeFormat(getUpStats(record, client.email)) ]] / [[ sizeFormat(getDownStats(record, client.email)) ]] + </a-tag> <template v-if="client._totalGB > 0"> - <a-tag v-if="isTrafficExhausted(record, client.email)" color="red">[[client._totalGB]]GB</a-tag> - <a-tag v-else color="cyan">[[client._totalGB]]GB</a-tag> + <a-tag v-if="isTrafficExhausted(record, client.email)" color="red">[[client._totalGB]] GB</a-tag> + <a-tag v-else color="cyan">[[client._totalGB]] GB</a-tag> </template> <a-tag v-else color="green">{{ i18n "indefinite" }}</a-tag> </template> @@ -42,7 +44,9 @@ [[ DateUtil.formatMillis(client._expiryTime) ]] </a-tag> </template> - <a-tag v-else-if="client.expiryTime < 0" color="cyan">[[ client._expiryTime ]] {{ i18n "pages.client.days" }}</a-tag> + <a-tag v-else-if="client.expiryTime < 0" color="cyan"> + [[ client._expiryTime ]] {{ i18n "pages.client.days" }} + </a-tag> <a-tag v-else color="green">{{ i18n "indefinite" }}</a-tag> </template> {{end}}
\ No newline at end of file |
