Skip to content
代码片段 群组 项目
未验证 提交 9b23b9d0 编辑于 作者: Rajan Mistry's avatar Rajan Mistry 提交者: GitLab
浏览文件

Add Change type support for work item drawer on the boards

上级 4ebb210e
No related branches found
No related tags found
无相关合并请求
...@@ -376,6 +376,7 @@ export default { ...@@ -376,6 +376,7 @@ export default {
@workItemDeleted="onIssuableDeleted(activeIssuable)" @workItemDeleted="onIssuableDeleted(activeIssuable)"
@attributesUpdated="onAttributeUpdated" @attributesUpdated="onAttributeUpdated"
@workItemStateUpdated="onStateUpdated" @workItemStateUpdated="onStateUpdated"
@workItemTypeChanged="updateBoardCard($event, activeIssuable)"
/> />
</template> </template>
</board-drawer-wrapper> </board-drawer-wrapper>
......
...@@ -8,6 +8,7 @@ module BoardsController ...@@ -8,6 +8,7 @@ module BoardsController
prepended do prepended do
before_action do before_action do
push_force_frontend_feature_flag(:work_item_epics, group.work_item_epics_enabled?) push_force_frontend_feature_flag(:work_item_epics, group.work_item_epics_enabled?)
push_frontend_feature_flag(:namespace_level_work_items, group)
end end
end end
end end
......
...@@ -8,6 +8,7 @@ module BoardsController ...@@ -8,6 +8,7 @@ module BoardsController
prepended do prepended do
before_action do before_action do
push_force_frontend_feature_flag(:work_item_epics, project&.group&.work_item_epics_enabled?) push_force_frontend_feature_flag(:work_item_epics, project&.group&.work_item_epics_enabled?)
push_frontend_feature_flag(:namespace_level_work_items, project&.group)
end end
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册