mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-07-01 04:22:08 +00:00
Fix clear IP affect in UI
This commit is contained in:
parent
baaa814a51
commit
025f559460
2 changed files with 4 additions and 4 deletions
|
@ -120,12 +120,12 @@
|
|||
event.target.value = msg.obj
|
||||
}
|
||||
},
|
||||
async clearDBClientIps(email,event) {
|
||||
async clearDBClientIps(email) {
|
||||
const msg = await HttpUtil.post('/xui/inbound/clearClientIps/'+ email);
|
||||
if (!msg.success) {
|
||||
return;
|
||||
}
|
||||
event.target.value = ""
|
||||
document.getElementById("clientIPs").value = ""
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -50,12 +50,12 @@
|
|||
Clear The Log
|
||||
</template>
|
||||
<span style="color: #FF4D4F">
|
||||
<a-icon type="delete" @click="clearDBClientIps(client.email,$event)"></a-icon>
|
||||
<a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon>
|
||||
</span>
|
||||
</a-tooltip>
|
||||
</span>
|
||||
<a-form layout="block">
|
||||
<a-textarea readonly @click="getDBClientIps(client.email,$event)" placeholder="Click To Get IPs" :auto-size="{ minRows: 2, maxRows: 10 }">
|
||||
<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>
|
||||
|
|
Loading…
Reference in a new issue