mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
fix: update children in ui on pause
This commit is contained in:
parent
703e3d0fae
commit
b4fabbb00f
1 changed files with 10 additions and 0 deletions
|
@ -987,6 +987,11 @@ let needSetup = false;
|
||||||
await startMonitor(socket.userID, monitorID);
|
await startMonitor(socket.userID, monitorID);
|
||||||
await server.sendUpdateMonitorIntoList(socket, monitorID);
|
await server.sendUpdateMonitorIntoList(socket, monitorID);
|
||||||
|
|
||||||
|
const childrenIDs = await Monitor.getAllChildrenIDs(monitorID);
|
||||||
|
for (let childID of childrenIDs) {
|
||||||
|
await server.sendUpdateMonitorIntoList(socket, childID);
|
||||||
|
}
|
||||||
|
|
||||||
callback({
|
callback({
|
||||||
ok: true,
|
ok: true,
|
||||||
msg: "successResumed",
|
msg: "successResumed",
|
||||||
|
@ -1007,6 +1012,11 @@ let needSetup = false;
|
||||||
await pauseMonitor(socket.userID, monitorID);
|
await pauseMonitor(socket.userID, monitorID);
|
||||||
await server.sendUpdateMonitorIntoList(socket, monitorID);
|
await server.sendUpdateMonitorIntoList(socket, monitorID);
|
||||||
|
|
||||||
|
const childrenIDs = await Monitor.getAllChildrenIDs(monitorID);
|
||||||
|
for (let childID of childrenIDs) {
|
||||||
|
await server.sendUpdateMonitorIntoList(socket, childID);
|
||||||
|
}
|
||||||
|
|
||||||
callback({
|
callback({
|
||||||
ok: true,
|
ok: true,
|
||||||
msg: "successPaused",
|
msg: "successPaused",
|
||||||
|
|
Loading…
Reference in a new issue