From 6c2a8bf6de83c157dc9e9712db0aedae696448b6 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Sat, 27 Jun 2026 02:12:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Show=20the=20selected=20country?= =?UTF-8?q?=20in=20policy=20access=20rules=20country=20`is=20not`=20rule?= =?UTF-8?q?=20match?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/resource-policy/PolicyAccessRulesTable.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/resource-policy/PolicyAccessRulesTable.tsx b/src/components/resource-policy/PolicyAccessRulesTable.tsx index 64b274c27..2ff2e1915 100644 --- a/src/components/resource-policy/PolicyAccessRulesTable.tsx +++ b/src/components/resource-policy/PolicyAccessRulesTable.tsx @@ -503,7 +503,8 @@ export function PolicyAccessRulesTable({ cell: ({ row }) => { let selectedCountry: (typeof COUNTRIES)[number] | undefined; if ( - row.original.match === "COUNTRY" && + (row.original.match === "COUNTRY" || + row.original.match === "COUNTRY_IS_NOT") && row.original.value ) { selectedCountry = COUNTRIES.find(