Commit 59e0801e authored by Fatih Acet's avatar Fatih Acet

Merge branch 'use-project-id-for-filtering' into 'master'

Uses `project_id` for filtering on the GSD

See merge request gitlab-org/gitlab-ee!9109
parents c01fb206 5ef96ae0
...@@ -5,7 +5,7 @@ export default function configureModerator(store) { ...@@ -5,7 +5,7 @@ export default function configureModerator(store) {
switch (type) { switch (type) {
case `projects/${projectsMutationTypes.RECEIVE_PROJECTS_SUCCESS}`: case `projects/${projectsMutationTypes.RECEIVE_PROJECTS_SUCCESS}`:
return store.dispatch('filters/setFilterOptions', { return store.dispatch('filters/setFilterOptions', {
filterId: 'project', filterId: 'project_id',
options: [ options: [
{ {
name: 'All', name: 'All',
......
...@@ -34,7 +34,7 @@ export default () => ({ ...@@ -34,7 +34,7 @@ export default () => ({
}, },
{ {
name: 'Project', name: 'Project',
id: 'project', id: 'project_id',
options: [ options: [
{ {
name: 'All', name: 'All',
......
---
title: Uses project_id instead of project on the group security dashboard
merge_request: 9109
author:
type: fixed
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