Commit e18f2711 authored by Scott Stern's avatar Scott Stern Committed by Paul Slaughter

Undo filter milestones dropdown in boards by state

https://gitlab.com/gitlab-org/gitlab/-/merge_requests/79554

Changelog: changed
parent d967565a
...@@ -15,7 +15,6 @@ import { ...@@ -15,7 +15,6 @@ import {
FilterFields, FilterFields,
ListTypeTitles, ListTypeTitles,
DraggableItemTypes, DraggableItemTypes,
active,
} from 'ee_else_ce/boards/constants'; } from 'ee_else_ce/boards/constants';
import { import {
formatIssueInput, formatIssueInput,
...@@ -210,7 +209,6 @@ export default { ...@@ -210,7 +209,6 @@ export default {
const variables = { const variables = {
fullPath, fullPath,
searchTerm, searchTerm,
state: active,
}; };
let query; let query;
......
...@@ -315,14 +315,14 @@ describe('fetchMilestones', () => { ...@@ -315,14 +315,14 @@ describe('fetchMilestones', () => {
'project', 'project',
{ {
query: projectBoardMilestones, query: projectBoardMilestones,
variables: { fullPath: 'gitlab-org/gitlab', state: 'active' }, variables: { fullPath: 'gitlab-org/gitlab' },
}, },
], ],
[ [
'group', 'group',
{ {
query: groupBoardMilestones, query: groupBoardMilestones,
variables: { fullPath: 'gitlab-org/gitlab', state: 'active' }, variables: { fullPath: 'gitlab-org/gitlab' },
}, },
], ],
])( ])(
......
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