From 474bfe4f1dbee345bfe32a280744c586574df890 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 4 Mar 2024 20:57:36 -0500 Subject: [PATCH] ui: Show the labels for filtering on logs --- static/lib.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/lib.js b/static/lib.js index 80dd4d1..c2f5515 100644 --- a/static/lib.js +++ b/static/lib.js @@ -359,6 +359,12 @@ export class GraphPlot extends HTMLElement { this.populateFilterData(labels); } } + if (subplot.Stream) { + for (const pair of subplot.Stream) { + const labels = pair[0]; + this.populateFilterData(labels); + } + } } }