Skip to content

Commit a2e49a5

Browse files
committed
terminology, new mapping modal: remove unused i-chev-down icon
1 parent 1bf1581 commit a2e49a5

1 file changed

Lines changed: 9 additions & 12 deletions

File tree

src/ui/pages/terminology.ts

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,18 +1007,15 @@ export function renderModalPartial(props: ModalProps): string {
10071007
? `
10081008
<label class="flex flex-col gap-1.5">
10091009
<span class="text-[10px] tracking-[0.1em] uppercase text-ink-3 font-medium">FHIR target (ConceptMap)</span>
1010-
<div class="relative">
1011-
<select x-model="picked.cmId" class="inp w-full appearance-none pr-8 cursor-pointer">
1012-
<option value="">Select a target ConceptMap…</option>
1013-
${options
1014-
.map(
1015-
(o) =>
1016-
`<option value="${escapeHtml(o.conceptMapId)}">${escapeHtml(o.label)}</option>`,
1017-
)
1018-
.join("")}
1019-
</select>
1020-
${renderIcon("chev-down", "sm")}
1021-
</div>
1010+
<select x-model="picked.cmId" class="inp">
1011+
<option value="">Select a target ConceptMap…</option>
1012+
${options
1013+
.map(
1014+
(o) =>
1015+
`<option value="${escapeHtml(o.conceptMapId)}">${escapeHtml(o.label)}</option>`,
1016+
)
1017+
.join("")}
1018+
</select>
10221019
${
10231020
options.length === 0
10241021
? `<span class="text-[11.5px] text-warn mt-1">No ConceptMaps exist yet. Seed one via the init bundle first.</span>`

0 commit comments

Comments
 (0)