Skip to content

Commit 8c19f6c

Browse files
authored
fix(#2436): fixes follow mode of logs in logfile view (#2461)
1 parent 65c7314 commit 8c19f6c

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-admin-server-ui/src/main/frontend/views/instances/logfile

1 file changed

+1
-1
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/instances/logfile/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export default {
191191
document.querySelector('.log-viewer > table')?.appendChild(row);
192192
});
193193
194-
if (!this.atBottom) {
194+
if (this.atBottom) {
195195
this.scrollToBottom();
196196
}
197197
},

0 commit comments

Comments
 (0)