From 4c6ce49526b4eba8223d8beeb9ebb9fa6094264e Mon Sep 17 00:00:00 2001 From: andersonid Date: Mon, 6 Oct 2025 16:36:21 -0300 Subject: [PATCH] fix: increase page_size to load all validations and show resource-governance namespace issues --- app/static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/index.html b/app/static/index.html index 847fd47..e471004 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -2082,8 +2082,8 @@ try { showLoading('workloads-table-container'); - // Load validations - const validationsResponse = await fetch('/api/v1/validations'); + // Load validations (load all pages to ensure we get all namespaces) + const validationsResponse = await fetch('/api/v1/validations?page=1&page_size=10000'); const validationsData = await validationsResponse.json(); currentData = { validations: validationsData };