Skip to content

Commit

Permalink
fix: remove extra argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Mar 13, 2024
1 parent 812a17f commit f1d3a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/web-logs/[name].vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
let term = new Terminal({ convertEol: true });
let fitAddon = new FitAddon();
term.loadAddon(fitAddon);
term.open(this.$refs.element, true);
term.open(this.$refs.element);
fitAddon.fit();
term.write((await axios.get(`/logs/${name}`)).data);
}
Expand Down

0 comments on commit f1d3a4c

Please sign in to comment.