Merge pull request 'moved boot query to connectcallback' (#21) from master into prod

Reviewed-on: #21
This commit is contained in:
Marco Lettere 2024-07-04 13:35:43 +02:00
commit f848098db9
1 changed files with 2 additions and 2 deletions

View File

@ -16,14 +16,14 @@ class ExtAppRoleController extends HTMLElement{
constructor(){
super()
this.#boot = document.querySelector("d4s-boot-2")
this.#serviceurl = this.#boot.url
this.attachShadow({ mode: "open" });
}
connectedCallback(){
this.#appid = this.getAttribute("appid")
this.#groupid = this.getAttribute("groupid")
this.#boot = document.querySelector("d4s-boot-2")
this.#serviceurl = this.#boot.url
if(!this.#loading){
this.#loading = true
this.loadData()