Skip to content

Commit

Permalink
Fix view more dashboard links
Browse files Browse the repository at this point in the history
  • Loading branch information
joanagmaia committed Feb 1, 2024
1 parent 1080048 commit 63ea1e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const cube = computed<DashboardCubeData>(() => cubeData.value);
const periodRange = computed(() => [
moment()
.utc()
.subtract(period.value - 1, 'day')
.subtract(period.value.value - 1, 'day')
.format('YYYY-MM-DD'),
moment()
.utc()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const cube = computed<DashboardCubeData>(() => cubeData.value);
const periodRange = computed(() => [
moment()
.utc()
.subtract(period.value - 1, 'day')
.subtract(period.value.value - 1, 'day')
.format('YYYY-MM-DD'),
moment()
.utc()
Expand Down

0 comments on commit 63ea1e0

Please sign in to comment.