Commit f914bc29 authored by Simon Knox's avatar Simon Knox

Merge branch 'ss/fix-iteration-ff-issue' into 'master'

Remove ff from filtered search for iterations

See merge request gitlab-org/gitlab!78411
parents 5fe709d8 168ca963
......@@ -47,19 +47,15 @@ export default {
useIdValue: true,
fullPath: this.epicsGroupPath,
},
...(this.glFeatures.iterationCadences
? [
{
icon: 'iteration',
title: iteration,
type: 'iteration',
operators: OPERATOR_IS_AND_IS_NOT,
token: IterationToken,
unique: true,
fetchIterations: this.fetchIterations,
},
]
: []),
{
icon: 'iteration',
title: iteration,
type: 'iteration',
operators: OPERATOR_IS_AND_IS_NOT,
token: IterationToken,
unique: true,
fetchIterations: this.fetchIterations,
},
{
type: 'weight',
title: weight,
......
......@@ -16,9 +16,6 @@ describe('IssueBoardFilter', () => {
provide: {
isSignedIn: true,
releasesFetchPath: '/releases',
glFeatures: {
iterationCadences: true,
},
},
});
};
......
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