Skip to content

Commit

Permalink
fix date selector in report pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgiakatos committed Nov 8, 2024
1 parent 078d292 commit 9af82bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/networks/AS.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ onMounted(() => {
<DateTimePicker
:min="minDate"
:max="maxDate"
:value="maxDate"
:value="endTime"
@input="setReportDate"
hideTime
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/networks/Country.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ onMounted(() => {
<DateTimePicker
:min="minDate"
:max="maxDate"
:value="maxDate"
:value="endTime"
@input="setReportDate"
hideTime
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/networks/IXP.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ onMounted(() => {
<DateTimePicker
:min="minDate"
:max="maxDate"
:value="maxDate"
:value="endTime"
@input="setReportDate"
hideTime
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/GlobalReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ onMounted(() => {
<DateTimePicker
:min="minDate"
:max="maxDate"
:value="maxDate"
:value="endTime"
@input="setReportDate"
hideTime
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ROV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ onMounted(() => {
<DateTimePicker
:min="minDate"
:max="maxDate"
:value="maxDate"
:value="endTime"
@input="setReportDate"
hideTime
/>
Expand Down

0 comments on commit 9af82bc

Please sign in to comment.