1
0
Fork 0
mirror of https://github.com/louislam/dockge.git synced 2025-04-04 23:42:20 +00:00

Remove console.log

This commit is contained in:
Louis Lam 2025-03-30 07:02:54 +08:00
parent cdbf7f1843
commit 8902db0ae4
3 changed files with 0 additions and 3 deletions
frontend/src

View file

@ -201,7 +201,6 @@ export default {
} else {
this.cursorPosition++;
this.terminalInputBuffer += e.key;
console.log(this.terminalInputBuffer);
this.terminal.write(e.key);
}
});

View file

@ -279,7 +279,6 @@ export default defineComponent({
});
socket.on("agentList", (res) => {
console.log(res);
if (res.ok) {
this.agentList = res.agentList;
}

View file

@ -39,7 +39,6 @@ export default {
},
},
mounted() {
console.log(this.endpoint);
this.$root.emitAgent(this.endpoint, "checkMainTerminal", (res) => {
this.enableConsole = res.ok;
this.processing = false;