Commit 168ca963 authored by sstern's avatar sstern

Remove ff from filtered search for iterations

parent 4a36c773
...@@ -47,19 +47,15 @@ export default { ...@@ -47,19 +47,15 @@ export default {
useIdValue: true, useIdValue: true,
fullPath: this.epicsGroupPath, fullPath: this.epicsGroupPath,
}, },
...(this.glFeatures.iterationCadences {
? [ icon: 'iteration',
{ title: iteration,
icon: 'iteration', type: 'iteration',
title: iteration, operators: OPERATOR_IS_AND_IS_NOT,
type: 'iteration', token: IterationToken,
operators: OPERATOR_IS_AND_IS_NOT, unique: true,
token: IterationToken, fetchIterations: this.fetchIterations,
unique: true, },
fetchIterations: this.fetchIterations,
},
]
: []),
{ {
type: 'weight', type: 'weight',
title: weight, title: weight,
......
...@@ -16,9 +16,6 @@ describe('IssueBoardFilter', () => { ...@@ -16,9 +16,6 @@ describe('IssueBoardFilter', () => {
provide: { provide: {
isSignedIn: true, isSignedIn: true,
releasesFetchPath: '/releases', 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