diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-06-03 18:29:32 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-06-03 18:29:32 +0300 |
| commit | fdc1124ea495aafbb5096b0333e8ceff6aaa53f8 (patch) | |
| tree | 990344071070d6d8b57d9989e862f84cbbc25d94 /web/html/xui/form/client.html | |
| parent | 33a598366be966ded4e0b41bbe19fd566552eec3 (diff) | |
some changes
ip limit method back to v1.6.0 method
remove event on getDBClientIps
better show ip on log (",\n")
Diffstat (limited to 'web/html/xui/form/client.html')
| -rw-r--r-- | web/html/xui/form/client.html | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html index 9494f0ac..45068f91 100644 --- a/web/html/xui/form/client.html +++ b/web/html/xui/form/client.html @@ -72,31 +72,32 @@ <a-input-number v-model="client.limitIp" min="0"></a-input-number> </a-form-item> <a-form-item v-if="client.email && client.limitIp > 0 && isEdit"> - <span slot="label"> - <span>{{ i18n "pages.inbounds.IPLimitlog" }}</span> - <a-tooltip> - <template slot="title"> - <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span> - </template> - <a-icon type="question-circle" theme="filled"></a-icon> - </a-tooltip> - <a-tooltip> - <template slot="title"> - <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span> - </template> - <span style="color: #FF4D4F"> - <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon> - </span> - </a-tooltip> - </span> - <a-form layout="block"> - <a-textarea id="clientIPs" readonly - @click="getDBClientIps(client.email,$event)" - placeholder="Click To Get IPs" - :auto-size="{ minRows: 2, maxRows: 10 }"> - </a-textarea> - </a-form> - </a-form-item> + <span slot="label"> + <span>{{ i18n "pages.inbounds.IPLimitlog" }}</span> + <a-tooltip> + <template slot="title"> + <span>{{ i18n "pages.inbounds.IPLimitlogDesc" }}</span> + </template> + <a-icon type="question-circle" theme="filled"></a-icon> + </a-tooltip> + <a-tooltip> + <template slot="title"> + <span>{{ i18n "pages.inbounds.IPLimitlogclear" }}</span> + </template> + <span style="color: #FF4D4F"> + <a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon> + </span> + </a-tooltip> + </span> + <a-form layout="block"> + <a-textarea id="clientIPs" readonly + @click="getDBClientIps(client.email)" + placeholder="Click To Get IPs" + :auto-size="{ minRows: 5, maxRows: 10 }" + > + </a-textarea> + </a-form> + </a-form-item> <br> <a-form-item v-if="inbound.xtls" label="Flow"> <a-select v-model="client.flow" style="width: 200px" :dropdown-class-name="themeSwitcher.darkCardClass"> |
