From 0c49337205e744be8a197a1167b7e5227f74d064 Mon Sep 17 00:00:00 2001 From: Gonzalo Trigueros Manzanas <242162051+gttrigger@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:22:33 +0100 Subject: [PATCH] Provisioning: add warning column to JobSummary UI. (#115220) --- public/app/features/provisioning/Job/JobSummary.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/app/features/provisioning/Job/JobSummary.tsx b/public/app/features/provisioning/Job/JobSummary.tsx index 0f9ba17db08..0dfecd9a616 100644 --- a/public/app/features/provisioning/Job/JobSummary.tsx +++ b/public/app/features/provisioning/Job/JobSummary.tsx @@ -33,6 +33,11 @@ const getSummaryColumns = () => [ header: 'Unchanged', cell: ({ row: { original: item } }: SummaryCell) => item.noop?.toString() || '-', }, + { + id: 'warnings', + header: 'Warnings', + cell: ({ row: { original: item } }: SummaryCell) => item.warning?.toString() || '-', + }, { id: 'errors', header: 'Errors',