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
c2d943a7
Commit
c2d943a7
authored
Oct 23, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes after review
parent
4ad8c999
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
3 deletions
+7
-3
app/assets/javascripts/pipelines/components/pipelines_table.vue
...sets/javascripts/pipelines/components/pipelines_table.vue
+1
-1
app/assets/javascripts/pipelines/components/pipelines_table_row.vue
.../javascripts/pipelines/components/pipelines_table_row.vue
+1
-1
app/assets/javascripts/vue_shared/components/ci_badge_link.vue
...ssets/javascripts/vue_shared/components/ci_badge_link.vue
+1
-1
spec/javascripts/pipelines/pipelines_table_row_spec.js
spec/javascripts/pipelines/pipelines_table_row_spec.js
+1
-0
spec/javascripts/pipelines/pipelines_table_spec.js
spec/javascripts/pipelines/pipelines_table_spec.js
+3
-0
No files found.
app/assets/javascripts/pipelines/components/pipelines_table.vue
View file @
c2d943a7
...
...
@@ -23,7 +23,7 @@
},
viewType
:
{
type
:
String
,
required
:
fals
e
,
required
:
tru
e
,
},
},
components
:
{
...
...
app/assets/javascripts/pipelines/components/pipelines_table_row.vue
View file @
c2d943a7
...
...
@@ -31,7 +31,7 @@ export default {
},
viewType
:
{
type
:
String
,
required
:
fals
e
,
required
:
tru
e
,
},
},
components
:
{
...
...
app/assets/javascripts/vue_shared/components/ci_badge_link.vue
View file @
c2d943a7
...
...
@@ -54,7 +54,7 @@
:href=
"status.details_path"
:class=
"cssClass"
v-tooltip
:title=
"
status.text
"
>
:title=
"
!showText ? status.text : ''
"
>
<ci-icon
:status=
"status"
/>
<template
v-if=
"showText"
>
...
...
spec/javascripts/pipelines/pipelines_table_row_spec.js
View file @
c2d943a7
...
...
@@ -10,6 +10,7 @@ describe('Pipelines Table Row', () => {
propsData
:
{
pipeline
,
autoDevopsHelpPath
:
'
foo
'
,
viewType
:
'
root
'
,
},
}).
$mount
();
};
...
...
spec/javascripts/pipelines/pipelines_table_spec.js
View file @
c2d943a7
...
...
@@ -23,6 +23,7 @@ describe('Pipelines Table', () => {
propsData
:
{
pipelines
:
[],
autoDevopsHelpPath
:
'
foo
'
,
viewType
:
'
root
'
,
},
}).
$mount
();
});
...
...
@@ -49,6 +50,7 @@ describe('Pipelines Table', () => {
propsData
:
{
pipelines
:
[],
autoDevopsHelpPath
:
'
foo
'
,
viewType
:
'
root
'
,
},
}).
$mount
();
expect
(
component
.
$el
.
querySelectorAll
(
'
.commit.gl-responsive-table-row
'
).
length
).
toEqual
(
0
);
...
...
@@ -61,6 +63,7 @@ describe('Pipelines Table', () => {
propsData
:
{
pipelines
:
[
pipeline
],
autoDevopsHelpPath
:
'
foo
'
,
viewType
:
'
root
'
,
},
}).
$mount
();
...
...
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