Commit e720e677 authored by Kushal Pandya's avatar Kushal Pandya

Fix bug where Milestone page led to console error

Fixes a bug where Group Milestone page led to console
error when Apollo Query is unavailable.

Changelog: fixed
parent 7e126601
...@@ -108,7 +108,7 @@ export default { ...@@ -108,7 +108,7 @@ export default {
}, },
computed: { computed: {
isTimeTrackingInfoLoading() { isTimeTrackingInfoLoading() {
return this.$apollo?.queries.issuableTimeTracking.loading ?? false; return this.$apollo?.queries.issuableTimeTracking?.loading ?? false;
}, },
timeEstimate() { timeEstimate() {
return this.timeTracking?.timeEstimate || 0; return this.timeTracking?.timeEstimate || 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment