- budgets/createBudget에 year/month 전달, copyBudget 추가 - BudgetView: '전월 예산 가져오기' / '다음 달로 복사' 버튼 - 백업 export는 현재 월 예산을 담음 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
+2
-1
@@ -44,7 +44,8 @@ export async function exportBackup() {
|
||||
safe(accountApi.wallets()),
|
||||
safe(accountApi.categories()),
|
||||
safe(accountApi.recurrings()),
|
||||
safe(accountApi.budgets()),
|
||||
// 예산은 월별 — 백업엔 현재 월 예산을 담는다
|
||||
safe(accountApi.budgets({ year: new Date().getFullYear(), month: new Date().getMonth() + 1 })),
|
||||
safe(accountApi.tags()),
|
||||
safe(accountApi.quickEntries()),
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user