diff --git a/app/assets/javascripts/boards/components/board_app.vue b/app/assets/javascripts/boards/components/board_app.vue index bae3b0b35502aef745c9ed1d6ea2b8c45ad3f6f6..bcd2fe57b97c922525fb143a9facf23e50470ae7 100644 --- a/app/assets/javascripts/boards/components/board_app.vue +++ b/app/assets/javascripts/boards/components/board_app.vue @@ -1,6 +1,5 @@ diff --git a/app/assets/javascripts/boards/components/board_list.vue b/app/assets/javascripts/boards/components/board_list.vue index 5714a1d28993dbef755d24f6e24c77885c4afdd3..c3a2693dace84615a2447c5abe8cf97e223a1571 100644 --- a/app/assets/javascripts/boards/components/board_list.vue +++ b/app/assets/javascripts/boards/components/board_list.vue @@ -2,7 +2,6 @@ import { GlLoadingIcon, GlIntersectionObserver, GlIcon } from '@gitlab/ui'; import Draggable from 'vuedraggable'; import { STATUS_CLOSED } from '~/issues/constants'; -import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import { sprintf, __, s__ } from '~/locale'; import { ESC_KEY_CODE } from '~/lib/utils/keycodes'; import { defaultSortableOptions, DRAG_DELAY } from '~/sortable/constants'; @@ -54,7 +53,7 @@ export default { BoardCardMoveToPosition, GlIcon, }, - mixins: [Tracking.mixin(), glFeatureFlagsMixin()], + mixins: [Tracking.mixin()], inject: [ 'isEpicBoard', 'isIssueBoard', @@ -332,12 +331,6 @@ export default { shouldCloneCard() { return shouldCloneCard(this.list.listType, this.toList.listType); }, - issuesDrawerEnabled() { - if (this.glFeatures.workItemViewForIssues) return true; - return Boolean( - this.isIssueBoard ? this.glFeatures.issuesListDrawer : this.glFeatures.epicsListDrawer, - ); - }, isInapplicable() { if (!this.draggedType || !this.list?.status?.id) { return false; @@ -742,10 +735,6 @@ export default { }); }, checkDrawerParams() { - if (!this.issuesDrawerEnabled) { - return; - } - const queryParam = getParameterByName(DETAIL_VIEW_QUERY_PARAM_NAME); if (!queryParam) { diff --git a/app/assets/javascripts/issues/list/components/issues_list_app.vue b/app/assets/javascripts/issues/list/components/issues_list_app.vue index 110bef76aefb891e24ea1c45ceb784ffd2313bd3..bfb23d7dde25751db444743939552239e866249c 100644 --- a/app/assets/javascripts/issues/list/components/issues_list_app.vue +++ b/app/assets/javascripts/issues/list/components/issues_list_app.vue @@ -632,9 +632,6 @@ export default { isIssuableSelected() { return !isEmpty(this.activeIssuable); }, - issuesDrawerEnabled() { - return this.glFeatures?.issuesListDrawer || this.glFeatures?.workItemViewForIssues; - }, }, watch: { $route(newValue, oldValue) { @@ -895,11 +892,7 @@ export default { this.state = state || STATUS_OPEN; }, handleSelectIssuable(issuable) { - if ( - this.issuesDrawerEnabled && - this.activeIssuable && - this.activeIssuable.iid === issuable.iid - ) { + if (this.activeIssuable && this.activeIssuable.iid === issuable.iid) { this.activeIssuable = null; const queryParam = getParameterByName(DETAIL_VIEW_QUERY_PARAM_NAME); @@ -1009,7 +1002,6 @@ export default {