]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
log view: comment length fixup
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 4 Mar 2022 13:54:59 +0000 (14:54 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 4 Mar 2022 13:54:59 +0000 (14:54 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/panel/LogView.js

index 412b26e7e77df4ec34c472ced39fc6bd488ede21..dcbd0020248248659fbe0d52355208a29c517feb 100644 (file)
@@ -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
                }