Skip to content

Commit

Permalink
utilize getter
Browse files Browse the repository at this point in the history
  • Loading branch information
IMB11 committed Jul 17, 2024
1 parent 1bf64d7 commit 387b079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/ui/charts/ChartDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ const selectedRange = computed({
});
const formattedCategorySubtitle = computed(() => {
return internalRange.value.getLabel([dayjs(startDate.value), dayjs(endDate.value)]);
return selectedRange.value.getLabel([dayjs(startDate.value), dayjs(endDate.value)]);
});
const selectedDataSet = computed(() => {
Expand Down

0 comments on commit 387b079

Please sign in to comment.