Skip to content

Commit

Permalink
Merge pull request #1073 from MTES-MCT/issue/2298
Browse files Browse the repository at this point in the history
[patch] (2298) - Mauvaise couleur sur le libellé évacuation des déchets
  • Loading branch information
superfeedboy authored Jan 2, 2025
2 parents d295914 + f67d736 commit 06501e6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ const { title, status, info, showStatus, answers, inverted } = toRefs(props);
const collapsed = ref(true);
const COLORS = {
good: "text-green500",
good: "text-tertiaryA11Y",
toImprove: "text-secondary",
bad: "text-red",
unknown: "text-red",
bad: "text-secondary",
unknown: "text-secondary",
};
const ICONS = {
good: "check",
Expand All @@ -161,7 +161,7 @@ const realStatus = computed(() => {
return s;
});
const colorClass = computed(() => {
return COLORS[realStatus.value] || "text-red";
return COLORS[realStatus.value] || "text-secondary";
});
const icon = computed(() => {
return ICONS[realStatus.value] || "question";
Expand Down

0 comments on commit 06501e6

Please sign in to comment.