From 1f128940f522ce34adcdd32a4e33505a2471b0fe Mon Sep 17 00:00:00 2001 From: sb Date: Mon, 6 Jul 2026 23:23:26 +0900 Subject: [PATCH] =?UTF-8?q?fix(recurring):=20=EC=9D=B4=EC=B2=B4=20?= =?UTF-8?q?=EC=9E=85=EA=B8=88=20=EC=A2=85=EB=A5=98=20=EC=B9=B4=EB=93=9C=20?= =?UTF-8?q?=EC=A0=9C=EC=99=B8=20=E2=80=94=20AccountView=EC=99=80=20?= =?UTF-8?q?=EC=9D=BC=EA=B4=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- src/views/account/RecurringView.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/account/RecurringView.vue b/src/views/account/RecurringView.vue index 157f1ba..8226c32 100644 --- a/src/views/account/RecurringView.vue +++ b/src/views/account/RecurringView.vue @@ -65,6 +65,8 @@ const toWalletsOfKind = computed(() => wallets.value.filter((w) => w.type === fo const fromWalletKinds = computed(() => WALLET_KINDS.filter((k) => k.value !== 'CARD' || form.type === 'EXPENSE'), ) +// 이체 입금 계좌 종류: 카드 제외(계좌→카드는 상환) +const toWalletKinds = computed(() => WALLET_KINDS.filter((k) => k.value !== 'CARD')) // 계좌 선택 칩 옵션 function walletOpts(list) { return list.map((w) => ({ value: w.id, label: `${w.name}${w.issuer ? ` (${w.issuer})` : ''}` })) @@ -325,7 +327,7 @@ onMounted(load) 입금 계좌