Merge pull request #13513 from Budibase/fix-client-loading-issues

Restore render blocker around client apps until data is ready
This commit is contained in:
Andrew Kingston 2024-04-19 10:57:37 +01:00 committed by GitHub
commit ebd7f33330
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 121 additions and 119 deletions

View File

@ -119,14 +119,15 @@
{/if}
</svelte:head>
<div
{#if dataLoaded}
<div
id="spectrum-root"
lang="en"
dir="ltr"
class="spectrum spectrum--medium {$themeStore.baseTheme} {$themeStore.theme}"
class:builder={$builderStore.inBuilder}
class:show={fontsLoaded && dataLoaded}
>
>
{#if $environmentStore.maintenance.length > 0}
<MaintenanceScreen maintenanceList={$environmentStore.maintenance} />
{:else}
@ -251,8 +252,9 @@
</UserBindingsProvider>
</DeviceBindingsProvider>
{/if}
</div>
<KeyboardManager />
</div>
<KeyboardManager />
{/if}
<style>
#spectrum-root {