feat(wallet): 대출 연이자율 소수점 3자리 입력 허용 (step 0.001)
Deploy / deploy (push) Failing after 15m2s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-07 23:31:27 +09:00
parent a5264f4dff
commit e4ab683ac8
+2 -2
View File
@@ -397,8 +397,8 @@ onBeforeUnmount(destroySortables)
placeholder="처음 빌린 금액 (예: 10000000)" :disabled="submitting" /> placeholder="처음 빌린 금액 (예: 10000000)" :disabled="submitting" />
</label> </label>
<label>연이자율(%) <label>연이자율(%)
<input v-model.number="form.loanRate" type="number" min="0" max="100" step="0.01" <input v-model.number="form.loanRate" type="number" min="0" max="100" step="0.001"
placeholder="예: 5.25" :disabled="submitting" /> placeholder="예: 5.253" :disabled="submitting" />
</label> </label>
<div class="field"> <div class="field">
<span class="field-label">상환방식</span> <span class="field-label">상환방식</span>