Authentication token generation WIP (#98)

First working version.
This commit is contained in:
John Livingston
2024-06-17 14:54:29 +02:00
parent 6bb29d79f8
commit a9b6474b8f
7 changed files with 75 additions and 32 deletions

View File

@ -167,8 +167,13 @@ function _tplShareChatEmbedOptions (el: ShareChatElement): TemplateResult {
`
}
function _tplShareChatDockOptions (_el: ShareChatElement): TemplateResult {
return html`<livechat-token-list mode="select"></livechat-token-list>`
function _tplShareChatDockOptions (el: ShareChatElement): TemplateResult {
return html`<livechat-token-list
mode="select"
@update=${(_e: CustomEvent) => {
el.requestUpdate()
}}
></livechat-token-list>`
}
function _tplShareChatXMPPOptions (_el: ShareChatElement): TemplateResult {