From 196fd4f6ed254c403aab081d5c461ee215fb78c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1muel=20Fekete?= Date: Wed, 29 Jan 2025 09:05:25 +0100 Subject: [PATCH] feat: display region name in the ipc tooltip (#219) --- src/operations/map/IpcChoroplethOperations.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/operations/map/IpcChoroplethOperations.tsx b/src/operations/map/IpcChoroplethOperations.tsx index 4b6cbb2e..91645c7c 100644 --- a/src/operations/map/IpcChoroplethOperations.tsx +++ b/src/operations/map/IpcChoroplethOperations.tsx @@ -296,7 +296,8 @@ export class IpcChoroplethOperations { root.render(
-

{IpcChoroplethOperations.getPhaseText(feature?.properties?.ipcPhase)}

+

{feature?.properties?.areaName}

+

{IpcChoroplethOperations.getPhaseText(feature?.properties?.ipcPhase)}

);