Minor fix for iframe hiding

This commit is contained in:
Scott Idem
2025-05-16 14:17:19 -04:00
parent 3041246638
commit 83d52b4e79

View File

@@ -927,11 +927,15 @@ $effect(() => {
{/if}
{#if (browser) }
<!-- The app debug menu -->
<E_app_sys_menu data={data} />
<!-- Always show if Trusted access or higher. Do not show if in iframe mode. -->
{#if !$ae_loc?.iframe || $ae_loc?.trusted_access}
<E_app_sys_menu data={data} />
<!-- The app debug menu -->
<E_app_debug_menu />
<!-- The app debug menu -->
<E_app_debug_menu />
{:else}
<!-- Nothing to show -->
{/if}
{/if}