Skip to content

Commit

Permalink
fix(ui): remove default end date (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye authored and tchiotludo committed Oct 11, 2023
1 parent f6e2b41 commit 4b40ae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/executions/Executions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@
endDate() {
// used to be able to force refresh the base interval when auto-reloading
this.recomputeInterval;
return this.$route.query.endDate ? this.$route.query.endDate : this.$moment().toISOString(true);
return this.$route.query.endDate ? this.$route.query.endDate : undefined;
},
startDate() {
// used to be able to force refresh the base interval when auto-reloading
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/logs/LogsWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
endDate() {
// used to be able to force refresh the base interval when auto-reloading
this.recomputeInterval;
return this.$route.query.endDate ? this.$route.query.endDate : this.$moment().toISOString(true);
return this.$route.query.endDate ? this.$route.query.endDate : undefined;
},
startDate() {
// used to be able to force refresh the base interval when auto-reloading
Expand Down

0 comments on commit 4b40ae3

Please sign in to comment.