Skip to content

Commit 19eed07

Browse files
committed
adding year to month
1 parent de9b8dc commit 19eed07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/usage/actions/table-workflow-usage/table-workflow-usage.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class TableWorkflowUsageComponent implements OnChanges, AfterViewInit {
8585
}
8686
return false
8787
});
88-
const month: string = line.date.toLocaleString('default', { month: 'short'});
88+
const month: string = line.date.toLocaleString('default', { month: 'short', year: '2-digit'});
8989
if (item) {
9090
if ((item as any)[month]) {
9191
(item as any)[month] += line.value;

0 commit comments

Comments
 (0)