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 85882b3 commit 4d15077Copy full SHA for 4d15077
dashboard/assets/scripts/dashboard.js
@@ -628,7 +628,8 @@ class JobsRenderer {
628
this.firstFilterMatch = null;
629
for (const job of this.jobs.sorted) {
630
const w = this.renderInfo[job.ident].logWindow;
631
- if (!query.test(job.url)) {
+ const show = query.test(job.url) || (this.showNicks && query.test(job.started_by));
632
+ if (!show) {
633
w.classList.add("log-window-hidden");
634
635
unmatchedWindows.push(w);
0 commit comments