🎨下线客户端后刷新客户端链接列表
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
coward 2024-06-07 09:06:11 +08:00
parent b1b49e2605
commit 911bc95b16

View File

@ -71,6 +71,7 @@ const offlineClientHandler = (clientID: string) => {
offlineClient(clientID).then(res => { offlineClient(clientID).then(res => {
if (res.code === 200) { if (res.code === 200) {
message("下线客户端成功", { type: "success" }); message("下线客户端成功", { type: "success" });
getClientsStatus();
} }
}); });
}; };