Skip to content

Commit

Permalink
Merge pull request #242 from dd3tech/fix/phase-alert-icon
Browse files Browse the repository at this point in the history
Fix(Phase): change alert icon color
  • Loading branch information
Misael840 authored Sep 25, 2024
2 parents 01f841c + 19c3435 commit 93a05a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Phase/Phase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ const ICON_STATUS = {
<EyeIcon className="w-3 h-3 text-white" />
</div>
),
missingInformation: <ExclamationIcon className="w-4 h-4 text-red-500" />
missingInformation: (
<ExclamationIcon className="w-4 h-4" style={{ color: '#d97706' }} />
)
}

const Phase = ({
Expand Down Expand Up @@ -186,7 +188,7 @@ const Phase = ({
<Flex gap="2" className="flex-col">
{listData.map((item, index) => (
<Flex
key={index}
key={`phase-${item.label}-${index}`}
gap="2"
className="flex-row items-center justify-between"
>
Expand Down

0 comments on commit 93a05a1

Please sign in to comment.