Commit 436760a5 authored by Jarka Košanová's avatar Jarka Košanová

Fix canRemove check

parent 5111b545
...@@ -54,7 +54,7 @@ export default Vue.extend({ ...@@ -54,7 +54,7 @@ export default Vue.extend({
return this.issue.milestone ? this.issue.milestone.title : __('No milestone'); return this.issue.milestone ? this.issue.milestone.title : __('No milestone');
}, },
canRemove() { canRemove() {
return !this.list.preset; return !this.list?.preset;
}, },
hasLabels() { hasLabels() {
return this.issue.labels && this.issue.labels.length; 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