Merge pull request #228 from NyaDoo/fix/config-timezone-and-key-dialog

fix: APP_TIMEZONE 循环导入 & 独立密钥额度编辑空白
This commit is contained in:
fawney19
2026-03-14 01:42:28 +08:00
committed by GitHub
8 changed files with 20 additions and 18 deletions

View File

@@ -207,9 +207,9 @@
@update:model-value="(v) => form.initial_balance_usd = parseNumberInput(v, { allowFloat: true, min: 0.01 })"
/>
<span
v-else-if="form.unlimited_balance"
v-else
class="flex h-10 w-full items-center rounded-lg border bg-background px-3 text-sm text-muted-foreground opacity-60"
>无限制</span>
>{{ form.unlimited_balance ? '无限制' : '按钱包余额限制' }}</span>
</div>
<Switch
:model-value="form.unlimited_balance ?? false"