We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203d40a commit 6294471Copy full SHA for 6294471
dashboard/assets/scripts/dashboard.js
@@ -628,7 +628,9 @@ class JobsRenderer {
628
this.firstFilterMatch = null;
629
for (const job of this.jobs.sorted) {
630
const w = this.renderInfo[job.ident].logWindow;
631
- if (!RegExp(query).test(job.url)) {
+ const r = RegExp(query);
632
+ const show = r.test(job.url) || (this.showNicks && r.test(job.started_by));
633
+ if (!show) {
634
w.classList.add("log-window-hidden");
635
636
unmatchedWindows.push(w);
0 commit comments