fix: API TOKEN 输入框应该设置 password 类型 (#274)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-02-19 21:22:08 +08:00
committed by GitHub
parent bf306dfec3
commit 4765d6f50a

View File

@@ -9,7 +9,8 @@
<header class="flex items-center justify-between bg-gray-100 p-4">
<h1 class="text-xl font-bold">bili-sync 管理页</h1>
<div>
<Input placeholder="API Token" bind:value={apiToken} on:change={updateToken} />
<Input type="password" placeholder="API Token" bind:value={apiToken} on:change={updateToken} />
</div>
</header>
<slot />