Skip to content

Commit

Permalink
bug fix - tgid #2214
Browse files Browse the repository at this point in the history
  • Loading branch information
MHSanaei committed Apr 3, 2024
1 parent be8e787 commit 59708d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/html/xui/client_bulk_modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
emailPrefix: "",
emailPostfix: "",
subId: "",
tgId: "",
tgId: 0,
flow: "",
delayedStart: false,
reset: 0,
Expand Down Expand Up @@ -200,7 +200,7 @@
this.emailPrefix = "";
this.emailPostfix = "";
this.subId = "";
this.tgId = "";
this.tgId = 0;
this.flow = "";
this.dbInbound = new DBInbound(dbInbound);
this.inbound = dbInbound.toInbound();
Expand Down
2 changes: 1 addition & 1 deletion web/html/xui/form/client.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<a-icon type="question-circle"></a-icon>
</a-tooltip>
</template>
<a-input v-model.trim="client.tgId"></a-input>
<a-input-number style="width: 50%" v-model="client.tgId" min="0"></a-input-number>
</a-form-item>
<a-form-item v-if="app.ipLimitEnable">
<template slot="label">
Expand Down

0 comments on commit 59708d6

Please sign in to comment.