mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-07 03:29:02 -05:00
fix: username insensitivity
This commit is contained in:
parent
1d36998967
commit
41edddcaec
|
|
@ -163,7 +163,7 @@
|
|||
<a href={`/u/${username}/${g}`} class:active={game === g}>{name}</a>
|
||||
{/each}
|
||||
|
||||
{#if me && me.username === username}
|
||||
{#if me && me.username.toLowerCase() === username.toLowerCase()}
|
||||
<a class="setting-icon clickable" use:tooltip={t("UserHome.Settings")} href={`/settings/${game}`}>
|
||||
<Icon icon="eos-icons:rotating-gear"/>
|
||||
</a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user