Commit 7a4e8196 authored by Phil Hughes's avatar Phil Hughes

Merge branch '334468-add-time-tracker-null-check' into 'master'

Fix bug where Milestone page led to console error

See merge request gitlab-org/gitlab!64775
parents 978e4d89 e720e677
......@@ -108,7 +108,7 @@ export default {
},
computed: {
isTimeTrackingInfoLoading() {
return this.$apollo?.queries.issuableTimeTracking.loading ?? false;
return this.$apollo?.queries.issuableTimeTracking?.loading ?? false;
},
timeEstimate() {
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