Commit 92eed576 authored by Eulyeon Ko's avatar Eulyeon Ko

Remove unused events and mappings

The following vuex actions mappings
and vuex state are not used
in this MVC for blocked issues popover:

set/unsetBlockingIssuables
toggleBlockedPopover
activeBlockingIssuables

The associated event mappings are removed as well.
parent f79ed8ad
......@@ -116,13 +116,7 @@ export default {
},
},
methods: {
...mapActions([
'performSearch',
'setError',
'setBlockingIssuables',
'unsetBlockingIssuables',
'toggleBlockedPopover',
]),
...mapActions(['performSearch', 'setError']),
isIndexLessThanlimit(index) {
return index < this.limitBeforeCounter;
},
......@@ -178,8 +172,6 @@ export default {
:unique-id="`${item.id}${list.id}`"
:issuable-type="issuableType"
@blocking-issuables-error="setError"
@blocking-issuables="setBlockingIssuables"
@hidden="unsetBlockingIssuables"
/>
<gl-icon
v-if="item.confidential"
......
......@@ -34,5 +34,4 @@ export default () => ({
},
// TODO: remove after ce/ee split of board_content.vue
isShowingEpicsSwimlanes: false,
activeBlockingIssuables: [],
});
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