Technically working options. Need CSS fix (plugin CSS not loaded) and data validation

This commit is contained in:
Mehdi Benadel
2024-05-23 02:26:38 +02:00
parent 9ea26dfd26
commit 687c4742f7
16 changed files with 717 additions and 1237 deletions

View File

@ -29,7 +29,8 @@ async function registerConfiguration (clientOptions: RegisterClientOptions): Pro
onMount: async ({ rootEl }) => {
const urlParams = new URLSearchParams(window.location.search)
const channelId = urlParams.get('channelId') ?? ''
render(html`<channel-configuration .registerClientOptions=${clientOptions}></channel-configuration>`, rootEl)
render(html`<channel-configuration .registerClientOptions=${clientOptions}
.channelId=${channelId}></channel-configuration>`, rootEl)
}
})