Skip to content

Commit

Permalink
fix fechlead quadrants
Browse files Browse the repository at this point in the history
  • Loading branch information
Amalie Henni authored and Amalie Henni committed Nov 19, 2024
1 parent 0967178 commit 48de1a7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions capra-fagradar/src/tech-leader-radar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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")],
},
Expand Down

0 comments on commit 48de1a7

Please sign in to comment.