Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
31ab6d60
Commit
31ab6d60
authored
Dec 03, 2021
by
charlie ablett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Address more linter errors
parent
08ea5e0b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
9 deletions
+1
-9
ee/app/assets/javascripts/boards/graphql/epic_create.mutation.graphql
...s/javascripts/boards/graphql/epic_create.mutation.graphql
+0
-2
ee/app/assets/javascripts/boards/graphql/lists_epics.query.graphql
...sets/javascripts/boards/graphql/lists_epics.query.graphql
+0
-2
ee/app/assets/javascripts/related_items_tree/queries/epic_children.query.graphql
...ts/related_items_tree/queries/epic_children.query.graphql
+0
-2
ee/app/assets/javascripts/related_items_tree/store/actions.js
...pp/assets/javascripts/related_items_tree/store/actions.js
+1
-1
ee/app/assets/javascripts/vue_shared/components/filtered_search_bar/queries/search_epics.query.graphql
...ts/filtered_search_bar/queries/search_epics.query.graphql
+0
-2
No files found.
ee/app/assets/javascripts/boards/graphql/epic_create.mutation.graphql
View file @
31ab6d60
...
...
@@ -3,8 +3,6 @@
mutation
CreateEpic
(
$input
:
CreateEpicInput
!)
{
createEpic
(
input
:
$input
)
{
# We have an id in deeply nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
epic
{
...
EpicNode
labels
{
...
...
ee/app/assets/javascripts/boards/graphql/lists_epics.query.graphql
View file @
31ab6d60
...
...
@@ -18,8 +18,6 @@ query epicBoardListEpics(
id
epics
(
first
:
$first
,
after
:
$after
,
filters
:
$filters
)
{
edges
{
# We have an id in deeply nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
node
{
...
EpicNode
relativePosition
...
...
ee/app/assets/javascripts/related_items_tree/queries/epic_children.query.graphql
View file @
31ab6d60
...
...
@@ -82,8 +82,6 @@ query childItems(
__typename
edges
{
__typename
# We have an id in deeply nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
node
{
__typename
...
EpicNode
...
...
ee/app/assets/javascripts/related_items_tree/store/actions.js
View file @
31ab6d60
import
Api
from
'
ee/api
'
;
import
epicChildren
from
'
../queries/epic_children.query.graphql
'
;
import
createFlash
from
'
~/flash
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
...
...
@@ -11,6 +10,7 @@ import {
pathIndeterminateErrorMap
,
relatedIssuesRemoveErrorMap
,
}
from
'
~/related_issues/constants
'
;
import
epicChildren
from
'
../queries/epic_children.query.graphql
'
;
import
{
ChildType
,
ChildState
,
idProp
,
relativePositions
,
trackingAddedIssue
}
from
'
../constants
'
;
...
...
ee/app/assets/javascripts/vue_shared/components/filtered_search_bar/queries/search_epics.query.graphql
View file @
31ab6d60
...
...
@@ -9,8 +9,6 @@ query searchEpics($fullPath: ID!, $search: String, $state: EpicState) {
includeAncestorGroups
:
true
includeDescendantGroups
:
false
)
{
# We have an id in deeply nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
nodes
{
...
EpicNode
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment