fix: apply default settings when no settings have been set yet

This commit is contained in:
Spectralitree
2021-12-12 14:33:35 +01:00
parent c9879dbbbb
commit 10aba59ee8
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@
</script>
<!-- display the banner if there's a banner set, and if the current settings allow for it-->
{#if user && user.banner && settings && settings.appearance.banner_top}
{#if user && user.banner && ((settings && settings.appearance.banner_top) || !settings)}
<div class="banner" style="background-image: url({user.banner})" />
{/if}
<Container>