From 7df957648198ba37ffbefed49224240bdc5ca570 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Fri, 11 Nov 2022 15:02:39 +0100 Subject: [PATCH] add tabulator header filters to logsviewer --- public/js/apps/LogsViewer/TabulatorSetup.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/public/js/apps/LogsViewer/TabulatorSetup.js b/public/js/apps/LogsViewer/TabulatorSetup.js index 7d98ba2f6..2ec3cc9d4 100644 --- a/public/js/apps/LogsViewer/TabulatorSetup.js +++ b/public/js/apps/LogsViewer/TabulatorSetup.js @@ -22,13 +22,13 @@ export const LogsViewerTabulatorOptions = { height: 700, layout: 'fitColumns', columns: [ - {title: 'Log ID', field: 'LogId'}, - {title: 'Request ID', field: 'RequestId'}, - {title: 'Execution time', field: 'ExecutionTime'}, - {title: 'Executed by', field: 'ExecutedBy'}, - {title: 'Description', field: 'Description'}, - {title: 'Data', field: 'Data'}, - {title: 'Web service type', field: 'WebserviceType'} + {title: 'Log ID', field: 'LogId', headerFilter: true}, + {title: 'Request ID', field: 'RequestId', headerFilter: true}, + {title: 'Execution time', field: 'ExecutionTime', headerFilter: true}, + {title: 'Executed by', field: 'ExecutedBy', headerFilter: true}, + {title: 'Description', field: 'Description', headerFilter: true}, + {title: 'Data', field: 'Data', headerFilter: true}, + {title: 'Web service type', field: 'WebserviceType', headerFilter: true} ], rowFormatter: function(row) { if (row.getData().RequestId.includes("error"))