diff options
| author | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-04 19:57:42 +0300 |
|---|---|---|
| committer | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-04 19:57:42 +0300 |
| commit | a18cbdcf11bdc2b19c0fd6cf2aa16bc00b3b9971 (patch) | |
| tree | ca1b12d575886177d415b21dd08b20c767d13408 /web/html/xui/form/protocol/vmess.html | |
| parent | 4f8de18d1f21518b98aba82cbf14d2d23c0c178c (diff) | |
changed number input tags to 'a-input-number'
Diffstat (limited to 'web/html/xui/form/protocol/vmess.html')
| -rw-r--r-- | web/html/xui/form/protocol/vmess.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/form/protocol/vmess.html b/web/html/xui/form/protocol/vmess.html index 9cd48544..86ceead8 100644 --- a/web/html/xui/form/protocol/vmess.html +++ b/web/html/xui/form/protocol/vmess.html @@ -15,7 +15,7 @@ <a-input v-model.trim="client.email" style="width: 150px;"></a-input> </a-form-item> <a-form-item label='{{ i18n "additional" }} ID'> - <a-input type="number" v-model.number="client.alterId" style="width: 70px;"></a-input> + <a-input-number v-model="client.alterId" style="width: 70px;"></a-input-number> </a-form-item> <a-form-item label="ID"> <a-input v-model.trim="client.id" style="width: 300px;"></a-input> @@ -36,7 +36,7 @@ <a-icon type="question-circle" theme="filled"></a-icon> </a-tooltip> </span> - <a-input type="number" v-model.number="client.limitIp" min="0" style="width: 70px;"></a-input> + <a-input-number v-model="client.limitIp" min="0" style="width: 70px;"></a-input-number> </a-form-item> <a-form-item> <span slot="label"> |
