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
00c4ae28
Commit
00c4ae28
authored
4 years ago
by
Donald Cook
Committed by
Kushal Pandya
4 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add limit to epics requested from backend on Roadmap
parent
f0cbff33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
ee/app/assets/javascripts/roadmap/queries/groupEpics.query.graphql
...sets/javascripts/roadmap/queries/groupEpics.query.graphql
+2
-0
ee/app/assets/javascripts/roadmap/store/actions.js
ee/app/assets/javascripts/roadmap/store/actions.js
+1
-0
No files found.
ee/app/assets/javascripts/roadmap/queries/groupEpics.query.graphql
View file @
00c4ae28
...
...
@@ -11,6 +11,7 @@ query groupEpics(
$milestoneTitle
:
String
=
""
$confidential
:
Boolean
$search
:
String
=
""
$first
:
Int
=
1001
)
{
group
(
fullPath
:
$fullPath
)
{
id
...
...
@@ -25,6 +26,7 @@ query groupEpics(
milestoneTitle
:
$milestoneTitle
confidential
:
$confidential
search
:
$search
first
:
$first
)
{
edges
{
node
{
...
...
This diff is collapsed.
Click to expand it.
ee/app/assets/javascripts/roadmap/store/actions.js
View file @
00c4ae28
...
...
@@ -45,6 +45,7 @@ const fetchGroupEpics = (
variables
=
{
...
variables
,
...
filterParams
,
first
:
gon
.
roadmap_epics_limit
+
1
,
};
}
...
...
This diff is collapsed.
Click to expand it.
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