More cleanup
This commit is contained in:
@ -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}
|
||||
`
|
||||
|
@ -18,7 +18,7 @@ import { LivechatElement } from './livechat'
|
||||
@customElement('livechat-help-button')
|
||||
export class HelpButtonElement extends LivechatElement {
|
||||
@consume({ context: registerClientOptionsContext, subscribe: true })
|
||||
public registerClientOptions: RegisterClientOptions | undefined
|
||||
public registerClientOptions?: RegisterClientOptions
|
||||
|
||||
@property({ attribute: false })
|
||||
public buttonTitle: string | DirectiveResult = ptTr(LOC_ONLINE_HELP)
|
||||
|
Reference in New Issue
Block a user