From 9e4fc1959db3872e45c5cdb4de9eba6e1dfadf1e Mon Sep 17 00:00:00 2001 From: Simao Rodrigues Date: Fri, 9 Aug 2024 11:40:42 +0100 Subject: [PATCH] Do not hardcode strings for missing data in the national tables --- .../map/content/details/tables/national-highseas/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/containers/map/content/details/tables/national-highseas/index.tsx b/frontend/src/containers/map/content/details/tables/national-highseas/index.tsx index 26816be2..128d2844 100644 --- a/frontend/src/containers/map/content/details/tables/national-highseas/index.tsx +++ b/frontend/src/containers/map/content/details/tables/national-highseas/index.tsx @@ -123,8 +123,8 @@ const NationalHighseasTable: FCWithMessages = () => { protectedArea: mpa?.name, coverage: coveragePercentage, protectedAreaType: protectionStatus?.slug, - establishmentStage: establishmentStage?.slug || 'N/A', - protectionLevel: mpaaProtectionLevel?.slug || 'unknown', + establishmentStage: establishmentStage?.slug, + protectionLevel: mpaaProtectionLevel?.slug, area: mpa?.area, dataSource: dataSource?.slug, iucnCategory: iucnCategory?.slug,