File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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>`
You can’t perform that action at this time.
0 commit comments