Commit e4996d77 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'fix-console-error' into 'master'

Fix canRemove check in boards sidebar

See merge request gitlab-org/gitlab!33139
parents 296c0cf9 436760a5
......@@ -54,7 +54,7 @@ export default Vue.extend({
return this.issue.milestone ? this.issue.milestone.title : __('No milestone');
},
canRemove() {
return !this.list.preset;
return !this.list?.preset;
},
hasLabels() {
return this.issue.labels && this.issue.labels.length;
......
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