We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f733d9 commit c25f29fCopy full SHA for c25f29f
1 file changed
src/lib/Footer.svelte
@@ -116,7 +116,11 @@
116
{#each tab.children as child}
117
<!-- Shouldn't show Managers tab unless managers has been populated -->
118
{#if child.label != "Managers" || managers.length > 0}
119
- <li><div class="navLink" onclick={() => goto(child.dest)}>{child.label}</div></li>
+ {#if child.label == "Go to Sleeper"}
120
+ <li><div class="navLink" onclick={() => window.location = child.dest}>{child.label}</div></li>
121
+ {:else}
122
+ <li><div class="navLink" onclick={() => goto(child.dest)}>{child.label}</div></li>
123
+ {/if}
124
{/if}
125
{/each}
126
0 commit comments