From 39ef32a9ac453852cf330461cdaf525e761d3258 Mon Sep 17 00:00:00 2001 From: Zack Rosen <69942576+zjrosen@users.noreply.github.com> Date: Sun, 23 Nov 2025 17:58:58 -0500 Subject: [PATCH] fix: use nullish coalescing to fix priority 0 bug display Fixes display bug where P0 issues were shown as P2 due to JavaScript treating 0 as falsy. Also adds P0 to the priority filter dropdown. Changes: - Replace || with ?? operator for priority defaults in monitor UI - Add P0 option to priority filter selector Co-authored-by: Zack Rosen --- examples/monitor-webui/web/index.html | 1 + examples/monitor-webui/web/static/js/app.js | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/monitor-webui/web/index.html b/examples/monitor-webui/web/index.html index bbc46fb5..07d626a7 100644 --- a/examples/monitor-webui/web/index.html +++ b/examples/monitor-webui/web/index.html @@ -64,6 +64,7 @@