From 6971ce9d6be897fe7373ddbef3b9c027ecf23a6d Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 4 Mar 2022 14:54:59 +0100 Subject: [PATCH] log view: comment length fixup Signed-off-by: Thomas Lamprecht --- src/panel/LogView.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/panel/LogView.js b/src/panel/LogView.js index 412b26e..dcbd002 100644 --- a/src/panel/LogView.js +++ b/src/panel/LogView.js @@ -53,9 +53,8 @@ Ext.define('Proxmox.panel.LogView', { let data = viewModel.get('data'); if (first === data.first && total === data.total && lines.length === data.lines) { - // before there is any real output, we get 'no output' as a single line. - // so always update if we only have one to be sure to catch - // the first real line of output + // before there is any real output, we get 'no output' as a single line, so always + // update if we only have one to be sure to catch the first real line of output if (total !== 1) { return; // same content, skip setting and scrolling }