Skip to content

Commit

Permalink
Merge pull request #34 from Billing-Wise/dev
Browse files Browse the repository at this point in the history
[release] 1.0.1 hotfix
  • Loading branch information
Koneweekk authored Aug 6, 2024
2 parents 6d8fa21 + 42c447b commit d129bc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/static/InvoiceAreaChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ export default {
// 차트에 데이터 넣기
this.staticStore.monthDataList.forEach((data) => {
monthlyInvoiced[data.month] = data.totalInvoiced;
monthlyCollected[data.month] = data.totalCollected;
monthlyOutstanding[data.month] = data.outstanding;
monthlyInvoiced[data.month-1] = data.totalInvoiced;
monthlyCollected[data.month-1] = data.totalCollected;
monthlyOutstanding[data.month-1] = data.outstanding;
})
// 차트 표시
Expand Down

0 comments on commit d129bc8

Please sign in to comment.