diff --git a/containers/backupchecks/src/templates/main/search.html b/containers/backupchecks/src/templates/main/search.html index 2cb03fe..378c7c2 100644 --- a/containers/backupchecks/src/templates/main/search.html +++ b/containers/backupchecks/src/templates/main/search.html @@ -18,6 +18,11 @@ {{ section['title'] }} ({{ section['total'] }}) Open {{ section['title'] }} + {% if section['key'] == 'daily_jobs' %} +
+ Note: The Daily Jobs page itself only shows results for the selected day. Search results can include matches that relate to jobs across other days. +
+ {% endif %}
{% if section['items'] %}
diff --git a/docs/changelog-claude.md b/docs/changelog-claude.md index bed49c7..60cc7ac 100644 --- a/docs/changelog-claude.md +++ b/docs/changelog-claude.md @@ -25,6 +25,7 @@ This file documents all changes made to this project via Claude Code. - Changed "Open
" behavior from global search to pass `q` into destination pages and apply page-level filtering, so opened overviews reflect the same search term - Changed filtering support on Inbox, Customers, Jobs, Daily Jobs, Run Checks, Tickets, Overrides, and Reports routes to accept wildcard-enabled `q` terms from search - Changed Reports frontend loading (`/api/reports`) to forward URL `q` so client-side refresh keeps the same filtered result set +- Changed Daily Jobs search section UI to show an explicit English note that the Daily Jobs page itself is day-scoped while search matches can reflect jobs across other days ### Fixed - Fixed `/search` page crash (`TypeError: 'builtin_function_or_method' object is not iterable`) by replacing Jinja dict access from `section.items` to `section['items']` in `templates/main/search.html`