web/SettingsInput: update the "hide sensitive input" icon
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Waiting to run
Run tests / check lockfile correctness (push) Waiting to run
Run tests / web sanity check (push) Waiting to run
Run tests / api sanity check (push) Waiting to run

This commit is contained in:
wukko 2025-05-19 18:52:28 +06:00
parent 566194d8a6
commit 1be6d2f7c1
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -17,7 +17,7 @@
import IconArrowBack from "@tabler/icons-svelte/IconArrowBack.svelte";
import IconEye from "@tabler/icons-svelte/IconEye.svelte";
import IconEyeClosed from "@tabler/icons-svelte/IconEyeClosed.svelte";
import IconEyeOff from "@tabler/icons-svelte/IconEyeOff.svelte";
type SettingsInputType = "url" | "uuid";
@ -141,7 +141,7 @@
{#if inputHidden}
<IconEye />
{:else}
<IconEyeClosed />
<IconEyeOff />
{/if}
</button>
{/if}