More cleanup

This commit is contained in:
Mehdi Benadel
2024-05-24 14:08:48 +02:00
parent 0f99d66ac4
commit d95312aa11
8 changed files with 110 additions and 28 deletions

View File

@ -380,7 +380,7 @@ export class DynamicTableFormElement extends LivechatElement {
/>
${(propertySchema.datalist)
? html`<datalist id=${inputId + '-datalist'}>
${(propertySchema.datalist ?? []).map((value) => html`<option value=${value} />`)}
${(propertySchema.datalist ?? []).map((value) => html`<option value=${value}>`)}
</datalist>`
: nothing}
`