From af00682f1474dc2f8d221946b48f9fe97c935766 Mon Sep 17 00:00:00 2001 From: Saif Chaudhry Date: Thu, 12 Mar 2026 09:21:43 -0700 Subject: [PATCH] ROX-33429: simplify Full view entity type filter to empty object The explicit 5-value Entity Type array listed all proto enum values, making it functionally identical to omitting the filter. Returning {} is simpler, avoids unnecessary query complexity, and prevents silent exclusion of future entity types added to the proto. Signed-off-by: Saif Chaudhry --- .../src/Containers/Violations/ViolationsTablePage.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/apps/platform/src/Containers/Violations/ViolationsTablePage.tsx b/ui/apps/platform/src/Containers/Violations/ViolationsTablePage.tsx index db5c4149f32b9..49a3f873d16a5 100644 --- a/ui/apps/platform/src/Containers/Violations/ViolationsTablePage.tsx +++ b/ui/apps/platform/src/Containers/Violations/ViolationsTablePage.tsx @@ -64,9 +64,8 @@ function getFilteredWorkflowViewSearchFilter( }; case 'Full view': default: - return { - 'Entity Type': ['UNSET', 'DEPLOYMENT', 'CONTAINER_IMAGE', 'RESOURCE', 'NODE'], - }; + // No filter returns all types + return {}; } }