Skip to content

Commit

Permalink
fix(ui): broken colors in image view (akuity#1754)
Browse files Browse the repository at this point in the history
Signed-off-by: Remington Breeze <remington@breeze.software>
  • Loading branch information
rbreeze authored Apr 3, 2024
1 parent 6157e35 commit 4cabae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/features/project/project-details/images.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const Images = ({ projectName, stages }: { projectName: string; stages: S
}
stages[stage.metadata?.name as string] = {
opacity: 1,
backgroundColor: colors[stage.metadata?.uid as string]
backgroundColor: colors[stage.metadata?.name as string]
};
});
});
Expand Down

0 comments on commit 4cabae1

Please sign in to comment.