Skip to content

Commit

Permalink
Merge pull request #657 from ferishili/issue-629
Browse files Browse the repository at this point in the history
Fix unnecessary green ticks in Metadata wizard
  • Loading branch information
lkiesow authored Jun 10, 2024
2 parents 55c9beb + 3c36b0f commit b28bac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/wizard/RenderMultiField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ const ShowValue = ({
{showCheck && (
<i
className={cn("saved fa fa-check", {
active: initialValues[field.name] !== field.value,
active: JSON.stringify(initialValues[field.name] ?? []) !== JSON.stringify(field.value ?? []),
})}
/>
)}
Expand Down

0 comments on commit b28bac0

Please sign in to comment.