From 48de1a7f6dc16711e08ca7920c2658209dbfb1c4 Mon Sep 17 00:00:00 2001 From: Amalie Henni Date: Tue, 19 Nov 2024 08:14:43 +0100 Subject: [PATCH] fix fechlead quadrants --- capra-fagradar/src/tech-leader-radar/index.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/capra-fagradar/src/tech-leader-radar/index.tsx b/capra-fagradar/src/tech-leader-radar/index.tsx index fa520bc..07b92a3 100644 --- a/capra-fagradar/src/tech-leader-radar/index.tsx +++ b/capra-fagradar/src/tech-leader-radar/index.tsx @@ -21,26 +21,26 @@ for (const modulePath in modules) { export const TechLeaderRadar = () => { const quadrants = [ { - name: "Folk", - orientation: "bottom-left", + name: "Organisasjon", + orientation: "top-left", blipColor: "rgb(71, 161, 173)", blips: [...items.filter((item) => item.quadrant === "Folk")], }, { - name: "Organisasjon", - orientation: "top-left", + name: "Teknologi", + orientation: "top-right", blipColor: "rgb(107, 158, 120)", blips: [...items.filter((item) => item.quadrant === "Organisasjon")], }, { - name: "Prosess eller arbeid?", - orientation: "bottom-right", + name: "Folk", + orientation: "bottom-left", blipColor: "rgb(204, 133, 10)", blips: [...items.filter((item) => item.quadrant === "Prosess")], }, { - name: "Teknologi", - orientation: "top-right", + name: "Prosess eller arbeid?", + orientation: "bottom-right", blipColor: "rgb(225, 106, 124)", blips: [...items.filter((item) => item.quadrant === "Teknologi")], },