Skip to content

Commit

Permalink
fixed typescript package error
Browse files Browse the repository at this point in the history
  • Loading branch information
suxrobGM committed Oct 6, 2024
1 parent 7d8283e commit 433b252
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified src/Client/Logistics.OfficeApp/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Client/Logistics.OfficeApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"typescript": "^5.4.5",
"typescript": "5.5.4",
"typescript-eslint": "^8.8.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class TruckGrossesLinechartComponent implements OnInit {

private drawChart(grosses: DailyGrossesDto) {
const labels: string[] = [];
const data: string[] = [];
const data: number[] = [];

grosses.data.forEach((i) => {
labels.push(DateUtils.toLocaleDate(i.date));
Expand Down

0 comments on commit 433b252

Please sign in to comment.