Fix logo override not working
This commit is contained in:
parent
31431ac98c
commit
66c6b6dec3
|
@ -1,9 +1,14 @@
|
|||
<script>
|
||||
import Logo from "assets/bb-emblem.svg"
|
||||
import { goto } from "@roxi/routify"
|
||||
import { organisation } from "stores/portal"
|
||||
</script>
|
||||
|
||||
<img src={Logo} alt="Budibase Logo" on:click={() => $goto("./apps")} />
|
||||
<img
|
||||
src={$organisation.logoUrl || Logo}
|
||||
alt="Budibase Logo"
|
||||
on:click={() => $goto("./apps")}
|
||||
/>
|
||||
|
||||
<style>
|
||||
img {
|
||||
|
|
Loading…
Reference in New Issue