@@ -13,7 +13,6 @@ import {
13
13
WIDGET_TYPE_ITERATION ,
14
14
WIDGET_TYPE_LABELS ,
15
15
WIDGET_TYPE_MILESTONE ,
16
- WIDGET_TYPE_STATUS ,
17
16
WIDGET_TYPE_PARTICIPANTS ,
18
17
WIDGET_TYPE_PROGRESS ,
19
18
WIDGET_TYPE_START_AND_DUE_DATE ,
@@ -55,7 +54,6 @@ export default {
55
54
WorkItemColor : () => import (' ee_component/work_items/components/work_item_color.vue' ),
56
55
WorkItemCustomFields : () =>
57
56
import (' ee_component/work_items/components/work_item_custom_fields.vue' ),
58
- WorkItemStatus : () => import (' ee_component/work_items/components/work_item_status.vue' ),
59
57
},
60
58
mixins: [glFeatureFlagMixin ()],
61
59
inject: [' hasSubepicsFeature' ],
@@ -185,9 +183,6 @@ export default {
185
183
workItemColor () {
186
184
return this .isWidgetPresent (WIDGET_TYPE_COLOR );
187
185
},
188
- workItemStatus () {
189
- return this .isWidgetPresent (WIDGET_TYPE_STATUS );
190
- },
191
186
workItemAuthor () {
192
187
return this .workItem ? .author ;
193
188
},
@@ -203,9 +198,6 @@ export default {
203
198
showWorkItemCustomFields () {
204
199
return this .glFeatures .customFieldsFeature && this .customFields ;
205
200
},
206
- showWorkItemStatus () {
207
- return this .glFeatures .workItemStatusFeatureFlag ;
208
- },
209
201
},
210
202
methods: {
211
203
isWidgetPresent (type , workItem = this .workItem ) {
@@ -217,16 +209,6 @@ export default {
217
209
218
210
< template>
219
211
< div class = " work-item-attributes-wrapper" >
220
- < work- item- status
221
- v- if = " showWorkItemStatus"
222
- class = " work-item-attributes-item"
223
- : can- update= " canUpdateMetadata"
224
- : work- item- id= " workItem.id"
225
- : work- item- iid= " workItem.iid"
226
- : work- item- type= " workItemType"
227
- : full- path= " fullPath"
228
- @error= " $emit('error', $event)"
229
- / >
230
212
< work- item- assignees
231
213
v- if = " workItemAssignees"
232
214
class = " js-assignee work-item-attributes-item"
0 commit comments