Skip to content

Commit

Permalink
feat: adjust search form coding match pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Dec 2, 2023
1 parent ce8fa29 commit 4b123e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default defineComponent({
const transformCodings = (coding: ValueSetCoding) => ({
id: coding.code,
value: coding.display,
value: coding.display ? `${coding.code}: ${coding.display}` : coding.code,
});
const transformConcepts = (concept: CodeSystemConcept) => ({
Expand Down

0 comments on commit 4b123e4

Please sign in to comment.