Fix clear IP affect in UI

This commit is contained in:
Alireza Ahmadi 2023-03-17 19:04:07 +01:00
parent baaa814a51
commit 025f559460
2 changed files with 4 additions and 4 deletions

View file

@ -120,12 +120,12 @@
event.target.value = msg.obj event.target.value = msg.obj
} }
}, },
async clearDBClientIps(email,event) { async clearDBClientIps(email) {
const msg = await HttpUtil.post('/xui/inbound/clearClientIps/'+ email); const msg = await HttpUtil.post('/xui/inbound/clearClientIps/'+ email);
if (!msg.success) { if (!msg.success) {
return; return;
} }
event.target.value = "" document.getElementById("clientIPs").value = ""
}, },
}, },
}); });

View file

@ -50,12 +50,12 @@
Clear The Log Clear The Log
</template> </template>
<span style="color: #FF4D4F"> <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> </span>
</a-tooltip> </a-tooltip>
</span> </span>
<a-form layout="block"> <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-textarea>
</a-form> </a-form>
</a-form-item> </a-form-item>