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
72d1817a
Commit
72d1817a
authored
Oct 25, 2018
by
Steve Azzopardi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve CE-to-EE conflicts for job page
parent
105e7de5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
9 deletions
+0
-9
app/assets/javascripts/jobs/components/job_app.vue
app/assets/javascripts/jobs/components/job_app.vue
+0
-3
app/assets/javascripts/jobs/store/getters.js
app/assets/javascripts/jobs/store/getters.js
+0
-3
spec/javascripts/jobs/store/getters_spec.js
spec/javascripts/jobs/store/getters_spec.js
+0
-3
No files found.
app/assets/javascripts/jobs/components/job_app.vue
View file @
72d1817a
...
...
@@ -81,10 +81,7 @@
'
shouldRenderCalloutMessage
'
,
'
shouldRenderTriggeredLabel
'
,
'
hasEnvironment
'
,
<<<<<<<
HEAD
'
shouldRenderSharedRunnerLimitWarning
'
,
=======
>>>>>>>
upstream
/
master
'
hasTrace
'
,
'
emptyStateIllustration
'
,
'
isScrollingDown
'
,
...
...
app/assets/javascripts/jobs/store/getters.js
View file @
72d1817a
...
...
@@ -41,7 +41,6 @@ export const emptyStateIllustration = state =>
(
state
.
job
&&
state
.
job
.
status
&&
state
.
job
.
status
.
illustration
)
||
{};
export
const
emptyStateAction
=
state
=>
(
state
.
job
&&
state
.
job
.
status
&&
state
.
job
.
status
.
action
)
||
{};
<<<<<<<
HEAD
// ee-only start
/**
...
...
@@ -55,8 +54,6 @@ export const shouldRenderSharedRunnerLimitWarning = state =>
!
_
.
isEmpty
(
state
.
job
.
runners
.
quota
)
&&
state
.
job
.
runners
.
quota
.
used
>=
state
.
job
.
runners
.
quota
.
limit
;
// ee-only end
=======
>>>>>>>
upstream
/
master
export
const
isScrollingDown
=
state
=>
isScrolledToBottom
()
&&
!
state
.
isTraceComplete
;
...
...
spec/javascripts/jobs/store/getters_spec.js
View file @
72d1817a
...
...
@@ -175,7 +175,6 @@ describe('Job Store Getters', () => {
});
});
<<<<<<<
HEAD
describe
(
'
shouldRenderSharedRunnerLimitWarning
'
,
()
=>
{
describe
(
'
without runners information
'
,
()
=>
{
it
(
'
returns false
'
,
()
=>
{
...
...
@@ -231,8 +230,6 @@ describe('Job Store Getters', () => {
});
});
=======
>>>>>>>
upstream
/
master
describe
(
'
hasRunnersForProject
'
,
()
=>
{
describe
(
'
with available and offline runners
'
,
()
=>
{
it
(
'
returns true
'
,
()
=>
{
...
...
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