Commit 33cf859a authored by Frédéric Caplette's avatar Frédéric Caplette

Merge branch '325693-remove-debugging-flag' into 'master'

Removes pipeline_filter_jobs feature flag

See merge request gitlab-org/gitlab!64919
parents b985f294 34b1a228
......@@ -79,21 +79,6 @@ export default {
columnSpacingClass() {
return this.isStageView ? 'gl-px-6' : 'gl-px-9';
},
/*
currentGroups and filteredGroups are part of
a test to hunt down a bug
(see: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57142).
They should be removed when the bug is rectified.
*/
currentGroups() {
return this.glFeatures.pipelineFilterJobs ? this.filteredGroups : this.groups;
},
filteredGroups() {
return this.groups.map((group) => {
return { ...group, jobs: group.jobs.filter(Boolean) };
});
},
formattedTitle() {
return capitalize(escape(this.name));
},
......@@ -156,7 +141,7 @@ export default {
</template>
<template #jobs>
<div
v-for="group in currentGroups"
v-for="group in groups"
:id="groupId(group)"
:key="getGroupId(group)"
data-testid="stage-column-group"
......
......@@ -14,7 +14,6 @@ class Projects::PipelinesController < Projects::ApplicationController
before_action :authorize_update_pipeline!, only: [:retry, :cancel]
before_action do
push_frontend_feature_flag(:pipeline_graph_layers_view, project, type: :development, default_enabled: :yaml)
push_frontend_feature_flag(:pipeline_filter_jobs, project, default_enabled: :yaml)
push_frontend_feature_flag(:graphql_pipeline_details, project, type: :development, default_enabled: :yaml)
push_frontend_feature_flag(:graphql_pipeline_details_users, current_user, type: :development, default_enabled: :yaml)
end
......
---
name: pipeline_filter_jobs
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/57142
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/325693
milestone: '13.11'
type: development
group: group::pipeline authoring
default_enabled: false
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