From 3e333291c60d9dbfd1388fa7fe56a97148f4a5c3 Mon Sep 17 00:00:00 2001 From: Tomas Kracmar Date: Wed, 22 Apr 2026 12:16:20 +0200 Subject: [PATCH] fix: revert to single-click service filter, show all services by default, page size 24 - Revert +/- buttons on service pills back to single-click = filter only this service - Remove default exclusion of Exchange/SharePoint/Teams (privacy controls handle this server-side) - Change default page size from 25 to 24 (divisible by 3 for the 3-column grid) - Update DEFAULT_PAGE_SIZE config default to 24 --- .env.example | 2 +- backend/config.py | 2 +- backend/frontend/index.html | 34 ++++++++++------------------------ backend/frontend/style.css | 25 ------------------------- 4 files changed, 12 insertions(+), 51 deletions(-) diff --git a/.env.example b/.env.example index 7e05cb5..958e5c7 100644 --- a/.env.example +++ b/.env.example @@ -56,7 +56,7 @@ LLM_API_VERSION= REDIS_URL=redis://localhost:6379/0 # UI default page size (number of events shown per page) -DEFAULT_PAGE_SIZE=25 +DEFAULT_PAGE_SIZE=24 # Optional: privacy / access control # Hide entire services from users without PRIVACY_SERVICE_ROLES diff --git a/backend/config.py b/backend/config.py index 02f2b5c..4966a26 100644 --- a/backend/config.py +++ b/backend/config.py @@ -61,7 +61,7 @@ class Settings(BaseSettings): REDIS_URL: str = "redis://localhost:6379/0" # UI defaults - DEFAULT_PAGE_SIZE: int = 25 + DEFAULT_PAGE_SIZE: int = 24 _settings = Settings() diff --git a/backend/frontend/index.html b/backend/frontend/index.html index 1bacab4..706a16d 100644 --- a/backend/frontend/index.html +++ b/backend/frontend/index.html @@ -4,7 +4,7 @@ Admin Operations Center - + @@ -184,11 +184,7 @@