From 4eda7479ce23935c7991a05dc1cdfd61b173dd01 Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Tue, 4 Jun 2024 17:16:26 -0600 Subject: [PATCH] core/ui: add policy id (#5127) add policy id --- ui/src/components/ErrorPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/ErrorPage.tsx b/ui/src/components/ErrorPage.tsx index e6613cc1b..72e179759 100644 --- a/ui/src/components/ErrorPage.tsx +++ b/ui/src/components/ErrorPage.tsx @@ -37,7 +37,7 @@ const PolicyEvaluationTraceDetails: FC = ({ )} - {trace.explanation || trace.id} + {trace.explanation || `Policy ID ${trace.id}`}