Skip to content

Commit 3056f9c

Browse files
authored
fix: metrics (#33)
1 parent af94778 commit 3056f9c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web-app/app/components/chart/KitchenChecks.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const { width } = useElementSize(cardRef)
7272
7373
const data = ref<DataRecord[]>([])
7474
75-
watch([() => period, () => range, () => values], () => {
75+
watch([() => period, () => range, () => values, () => metrics], () => {
7676
const dates = ({
7777
daily: eachDayOfInterval,
7878
weekly: eachWeekOfInterval,

apps/web-app/app/components/chart/KitchenRevenue.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const { width } = useElementSize(cardRef)
7373
7474
const data = ref<DataRecord[]>([])
7575
76-
watch([() => period, () => range, () => values], () => {
76+
watch([() => period, () => range, () => values, () => metrics], () => {
7777
const dates = ({
7878
daily: eachDayOfInterval,
7979
weekly: eachWeekOfInterval,

0 commit comments

Comments
 (0)