Skip to content

Commit

Permalink
fix(chart): year range
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Dec 8, 2024
1 parent d296cbb commit 66b970c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/project/template/TemplateDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default {
switch (this.dateRange) {
case 'last_year':
date.setDate(date.getFullYear() - 1);
date.setFullYear(date.getFullYear() - 1);
break;
case 'last_month':
date.setDate(date.getDate() - 30);
Expand Down

0 comments on commit 66b970c

Please sign in to comment.