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