Fix save docker host issue

This commit is contained in:
Louis Lam 2022-07-30 19:48:12 +08:00
parent f3322398e5
commit 8ced61697a
4 changed files with 18 additions and 9 deletions

View file

@ -139,7 +139,7 @@ async function sendDockerHostList(socket) {
]);
for (let bean of list) {
result.push(bean.export());
result.push(bean.toJSON());
}
io.to(socket.userID).emit("dockerHostList", result);