mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-08 06:04:10 +00:00
fix(panel): correct user.html i18n quoting to avoid template parse failure
This commit is contained in:
parent
b03bb96899
commit
0775c5f10d
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@
|
||||||
<template v-else>-</template>
|
<template v-else>-</template>
|
||||||
</a-descriptions-item>
|
</a-descriptions-item>
|
||||||
<a-descriptions-item label='{{ i18n "pages.user.status" }}'>
|
<a-descriptions-item label='{{ i18n "pages.user.status" }}'>
|
||||||
<a-badge v-if="traffic" :status="traffic.enable ? 'processing' : 'default'" :text="traffic.enable ? '{{ i18n \"enabled\" }}' : '{{ i18n \"disabled\" }}'" />
|
<a-badge v-if="traffic" :status="traffic.enable ? 'processing' : 'default'" :text='traffic.enable ? "{{ i18n "enabled" }}" : "{{ i18n "disabled" }}"' />
|
||||||
<template v-else>-</template>
|
<template v-else>-</template>
|
||||||
</a-descriptions-item>
|
</a-descriptions-item>
|
||||||
</a-descriptions>
|
</a-descriptions>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue