Fix icon URL
This commit is contained in:
parent
5eb26c3b53
commit
86fbb1d913
@ -1,6 +1,6 @@
|
|||||||
<section class="sidebar">
|
<section class="sidebar">
|
||||||
<header>
|
<header>
|
||||||
<img src="{getIconUrl()}" class="guild-icon" alt="Guild icon" width="50" height="50"/>
|
<img src="{iconUrl}" class="guild-icon" alt="Guild icon" width="50" height="50"/>
|
||||||
{guild.name}
|
{guild.name}
|
||||||
</header>
|
</header>
|
||||||
<nav>
|
<nav>
|
||||||
@ -14,7 +14,13 @@
|
|||||||
<ManageSidebarLink {currentRoute} title="Transcripts" icon="fa-copy" href="/manage/{guildId}/transcripts" />
|
<ManageSidebarLink {currentRoute} title="Transcripts" icon="fa-copy" href="/manage/{guildId}/transcripts" />
|
||||||
|
|
||||||
{#if isAdmin}
|
{#if isAdmin}
|
||||||
<ManageSidebarLink {currentRoute} routePrefix="/manage/{guildId}/panels" title="Ticket Panels" icon="fa-mouse-pointer" href="/manage/{guildId}/panels" />
|
<ManageSidebarLink {currentRoute} routePrefix="/manage/{guildId}/panels" title="Ticket Panels" icon="fa-mouse-pointer" href="/manage/{guildId}/panels">
|
||||||
|
|
||||||
|
<SubNavigation>
|
||||||
|
<SubNavigationLink {currentRoute} href="/manage/{guildId}/panels" routePrefix="/manage/{guildId}/panels">blah</SubNavigationLink>
|
||||||
|
<SubNavigationLink {currentRoute}>blahhh</SubNavigationLink>
|
||||||
|
</SubNavigation>
|
||||||
|
</ManageSidebarLink>
|
||||||
|
|
||||||
<ManageSidebarLink {currentRoute} title="Forms" icon="fa-poll-h" href="/manage/{guildId}/forms" />
|
<ManageSidebarLink {currentRoute} title="Forms" icon="fa-poll-h" href="/manage/{guildId}/forms" />
|
||||||
<ManageSidebarLink {currentRoute} title="Staff Teams" icon="fa-users" href="/manage/{guildId}/teams" />
|
<ManageSidebarLink {currentRoute} title="Staff Teams" icon="fa-users" href="/manage/{guildId}/teams" />
|
||||||
@ -97,6 +103,7 @@
|
|||||||
let guildId = currentRoute.namedParams.id;
|
let guildId = currentRoute.namedParams.id;
|
||||||
|
|
||||||
let guild = {};
|
let guild = {};
|
||||||
|
let iconUrl = "";
|
||||||
|
|
||||||
async function loadGuild() {
|
async function loadGuild() {
|
||||||
const res = await axios.get(`${API_URL}/api/${guildId}/guild`);
|
const res = await axios.get(`${API_URL}/api/${guildId}/guild`);
|
||||||
@ -131,6 +138,8 @@
|
|||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
await withLoadingScreen(async () => {
|
await withLoadingScreen(async () => {
|
||||||
await loadGuild();
|
await loadGuild();
|
||||||
|
|
||||||
|
iconUrl = getIconUrl();
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
Loading…
x
Reference in New Issue
Block a user