Skip to content

Commit 591b025

Browse files
committed
1 parent 05744c6 commit 591b025

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/ValueSet/ValueSetForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function ConceptFields({
7171
(concept) => concept.code === response.metadata.code,
7272
);
7373

74-
if (conceptIndex && conceptIndex !== -1) {
74+
if (conceptIndex != undefined && conceptIndex !== -1) {
7575
parentForm.setValue(
7676
`compose.${type}.${nestIndex}.concept.${conceptIndex}.display`,
7777
response.metadata.display,

0 commit comments

Comments
 (0)