Skip to content

Commit

Permalink
fix: serial console not work
Browse files Browse the repository at this point in the history
Signed-off-by: andy.lee <[email protected]>
  • Loading branch information
a110605 committed Jan 9, 2025
1 parent e4b3f84 commit e7b8398
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/harvester/components/SerialConsole/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ export default {
});
this.queue = [];
}, 5)
}, 10),
deep: true
}
},
Expand Down Expand Up @@ -194,6 +195,7 @@ export default {
});
this.socket.addEventListener(EVENT_MESSAGE, (e) => {
// this.queue = [...e.detail.data.text()];
this.queue.push(e.detail.data.text());
});
Expand Down

0 comments on commit e7b8398

Please sign in to comment.