We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05744c6 commit 591b025Copy full SHA for 591b025
src/components/ValueSet/ValueSetForm.tsx
@@ -71,7 +71,7 @@ function ConceptFields({
71
(concept) => concept.code === response.metadata.code,
72
);
73
74
- if (conceptIndex && conceptIndex !== -1) {
+ if (conceptIndex != undefined && conceptIndex !== -1) {
75
parentForm.setValue(
76
`compose.${type}.${nestIndex}.concept.${conceptIndex}.display`,
77
response.metadata.display,
0 commit comments