diff --git a/dashboard/src/views/ConsolePage.vue b/dashboard/src/views/ConsolePage.vue
index 7df3aeca5..0ffff380d 100644
--- a/dashboard/src/views/ConsolePage.vue
+++ b/dashboard/src/views/ConsolePage.vue
@@ -13,10 +13,11 @@ const { tm } = useModuleI18n('features/console');
{{ tm('title') }}
@@ -57,7 +58,7 @@ export default {
},
data() {
return {
- autoScrollDisabled: false,
+ autoScrollEnabled: true,
pipDialog: false,
pipInstallPayload: {
package: '',
@@ -68,9 +69,9 @@ export default {
}
},
watch: {
- autoScrollDisabled(val) {
+ autoScrollEnabled(val) {
if (this.$refs.consoleDisplayer) {
- this.$refs.consoleDisplayer.autoScroll = !val;
+ this.$refs.consoleDisplayer.autoScroll = val;
}
}
},