diff options
Diffstat (limited to 'web/html/modals/client_bulk_modal.html')
| -rw-r--r-- | web/html/modals/client_bulk_modal.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/modals/client_bulk_modal.html b/web/html/modals/client_bulk_modal.html index ac0fa011..6e61feae 100644 --- a/web/html/modals/client_bulk_modal.html +++ b/web/html/modals/client_bulk_modal.html @@ -26,7 +26,7 @@ <a-input v-model.trim="clientsBulkModal.emailPostfix"></a-input> </a-form-item> <a-form-item label='{{ i18n "pages.client.clientCount" }}' v-if="clientsBulkModal.emailMethod < 2"> - <a-input-number v-model.number="clientsBulkModal.quantity" :min="1" :max="100"></a-input-number> + <a-input-number v-model.number="clientsBulkModal.quantity" :min="1" :max="500"></a-input-number> </a-form-item> <a-form-item label='{{ i18n "security" }}' v-if="inbound.protocol === Protocols.VMESS"> <a-select v-model="clientsBulkModal.security" :dropdown-class-name="themeSwitcher.currentTheme"> @@ -204,7 +204,7 @@ this.security = "auto"; this.flow = ""; this.dbInbound = new DBInbound(dbInbound); - this.inbound = dbInbound.toInbound(); + this.inbound = Inbound.fromJson(dbInbound.toInbound().toJson()); this.delayedStart = false; this.reset = 0; }, @@ -247,4 +247,4 @@ }); </script> -{{end}}
\ No newline at end of file +{{end}} |
