Work on bug fix or something for IDAA and the page not fully loading properly. Unsure if this is related to Novi permissions check?
This commit is contained in:
@@ -29,7 +29,7 @@ let { data, children }: Props = $props();
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>IDAA - {$idaa_loc.title ?? 'Æ loading...'}</title>
|
||||
<title>IDAA - {$idaa_loc?.title ?? 'Æ loading...'}</title>
|
||||
</svelte:head>
|
||||
|
||||
<Modal components={modalRegistry}
|
||||
@@ -41,9 +41,9 @@ let { data, children }: Props = $props();
|
||||
|
||||
<!-- App Shell -->
|
||||
<AppShell
|
||||
regionPage={($ae_loc.iframe ? 'iframe' : '')}
|
||||
slotHeader={($ae_loc.iframe ? 'iframe' : '')}
|
||||
slotFooter={($ae_loc.iframe ? 'iframe' : '')}
|
||||
regionPage={($ae_loc?.iframe ? 'iframe' : '')}
|
||||
slotHeader={($ae_loc?.iframe ? 'iframe' : '')}
|
||||
slotFooter={($ae_loc?.iframe ? 'iframe' : '')}
|
||||
>
|
||||
|
||||
{#snippet header()}
|
||||
@@ -102,7 +102,7 @@ let { data, children }: Props = $props();
|
||||
|
||||
<div
|
||||
class="flex text-sm sm:text-sm md:text-md lg:text-md xl:text-md 2xl:text-lg text-slate-400 hover:text-slate-800 transition px-1"
|
||||
class:ae_debug={$ae_loc.debug}
|
||||
class:ae_debug={$ae_loc?.debug}
|
||||
>
|
||||
|
||||
<Element_data_store
|
||||
|
||||
Reference in New Issue
Block a user