Skip to content

Commit

Permalink
Fixed storing console details open state (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Jan 9, 2025
1 parent d42abcf commit 70a9ae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/fragments/ConsoleOperation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
methods: {
toggleConsole() {
const showConsole = this.$refs.details.open;
this.openConsole = this.$refs.details.open;
if (showConsole && this.$refs.console) {
if (this.openConsole && this.$refs.console) {
this.autoScroll = true;
this.$refs.console.scrollTop = this.$refs.console.scrollHeight;
Expand Down

0 comments on commit 70a9ae6

Please sign in to comment.