Skip to content

Commit

Permalink
[K5P-80] [fix] 에리어 그래프 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Koneweekk committed Aug 6, 2024
1 parent 5d62d9c commit ceab6ee
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 ceab6ee

Please sign in to comment.