diff --git a/frontend/src/pages/inbounds/ClientBulkModal.vue b/frontend/src/pages/inbounds/ClientBulkModal.vue index e5a109ef..19804a26 100644 --- a/frontend/src/pages/inbounds/ClientBulkModal.vue +++ b/frontend/src/pages/inbounds/ClientBulkModal.vue @@ -53,6 +53,7 @@ const form = reactive({ flow: '', subId: '', tgId: 0, + comment: '', limitIp: 0, totalGB: 0, expiryTime: 0, // ms epoch; negative => delayed start days @@ -85,6 +86,7 @@ watch(() => props.open, (next) => { form.flow = ''; form.subId = ''; form.tgId = 0; + form.comment = ''; form.limitIp = 0; form.totalGB = 0; form.expiryTime = 0; @@ -135,6 +137,7 @@ function buildClients() { if (form.subId.length > 0) c.subId = form.subId; c.tgId = form.tgId; + if (form.comment.length > 0) c.comment = form.comment; c.security = form.security; c.limitIp = form.limitIp; // Use the clien's totalGB setter (ms epoch and bytes already handled @@ -227,6 +230,10 @@ async function submit() { + + + + diff --git a/frontend/src/pages/inbounds/ClientRowTable.vue b/frontend/src/pages/inbounds/ClientRowTable.vue index 07b9523b..3659d643 100644 --- a/frontend/src/pages/inbounds/ClientRowTable.vue +++ b/frontend/src/pages/inbounds/ClientRowTable.vue @@ -1,5 +1,5 @@