-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat]予算支出ページの年度切り替え実装 #681
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レビューしました。確認お願いします!
<tr | ||
key={budgetView.budget.id} | ||
className={clsx( | ||
index !== budgets.length - 1 && 'border-b', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました
[fix]バグ修正
<tr | ||
key={expenseView.expense.id} | ||
className={clsx( | ||
index !== expenses.length - 1 && 'border-b', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
index !== expenses.length - 1 && 'border-b', | |
expenses && index !== expenses.length - 1 && 'border-b', |
同様に、expensesがnullなときにエラーが出ていたためです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました
[fix]バグ修正
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
resolve #676
概要
画面スクリーンショット等
テスト項目
/budgets/details/{year}
で取得できるか確認備考