1
0
Fork 0
mirror of synced 2024-08-31 09:41:13 +12:00

Prevent rendering overview until selected app has loaded

This commit is contained in:
Andrew Kingston 2022-08-08 11:40:13 +01:00
parent 8f63abe923
commit 3d42c9cfeb

View file

@ -206,7 +206,8 @@
}) })
</script> </script>
<span class="overview-wrap"> {#if selectedApp}
<span class="overview-wrap">
<Page wide noPadding> <Page wide noPadding>
{#await promise} {#await promise}
<div class="loading"> <div class="loading">
@ -286,7 +287,10 @@
</MenuItem> </MenuItem>
{/if} {/if}
{#if !isPublished} {#if !isPublished}
<MenuItem on:click={() => deleteApp(selectedApp)} icon="Delete"> <MenuItem
on:click={() => deleteApp(selectedApp)}
icon="Delete"
>
Delete Delete
</MenuItem> </MenuItem>
{/if} {/if}
@ -358,7 +362,8 @@
<p>Something went wrong: {error.message}</p> <p>Something went wrong: {error.message}</p>
{/await} {/await}
</Page> </Page>
</span> </span>
{/if}
<style> <style>
.app-url { .app-url {