diff --git a/ui/src/components/executions/Executions.vue b/ui/src/components/executions/Executions.vue index 6cb6dc08ca0..1b6fb23df19 100644 --- a/ui/src/components/executions/Executions.vue +++ b/ui/src/components/executions/Executions.vue @@ -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 diff --git a/ui/src/components/logs/LogsWrapper.vue b/ui/src/components/logs/LogsWrapper.vue index 81dc5c72d7c..929dcce440d 100644 --- a/ui/src/components/logs/LogsWrapper.vue +++ b/ui/src/components/logs/LogsWrapper.vue @@ -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