ui: Show the labels for filtering on logs

This commit is contained in:
Jeremy Wall 2024-03-04 20:57:36 -05:00
parent f69ea6d6fa
commit 474bfe4f1d

View File

@ -359,6 +359,12 @@ export class GraphPlot extends HTMLElement {
this.populateFilterData(labels); this.populateFilterData(labels);
} }
} }
if (subplot.Stream) {
for (const pair of subplot.Stream) {
const labels = pair[0];
this.populateFilterData(labels);
}
}
} }
} }