From 6a50f41aeb230ff9a0498dcd8c3688ef8681450f Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 24 Dec 2022 10:30:25 -0500 Subject: [PATCH] Internal cell count !== visual cell count Internal cell count is used to filter the output of the logger. This commit fixes filtering according to cname alias. --- src/js/logger-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/logger-ui.js b/src/js/logger-ui.js index 1c8b29dcc..d9324726b 100644 --- a/src/js/logger-ui.js +++ b/src/js/logger-ui.js @@ -774,7 +774,7 @@ const viewPort = (( ) => { nodeFromURL(div.children[COLUMN_URL], cells[COLUMN_URL], re); // Alias URL (CNAME, etc.) - if ( cells.length > COLUMN_URL ) { + if ( cells.length > 8 ) { const pos = details.textContent.lastIndexOf('\taliasURL='); if ( pos !== -1 ) { dom.attr(div, 'data-aliasid', details.id);