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
6fb66321
Commit
6fb66321
authored
Mar 15, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds counters to badges
parent
d3732b55
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
6 deletions
+29
-6
app/assets/javascripts/vue_pipelines_index/pipelines.js
app/assets/javascripts/vue_pipelines_index/pipelines.js
+29
-6
No files found.
app/assets/javascripts/vue_pipelines_index/pipelines.js
View file @
6fb66321
...
@@ -26,7 +26,12 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
...
@@ -26,7 +26,12 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
apiScope
:
'
all
'
,
apiScope
:
'
all
'
,
pageInfo
:
{},
pageInfo
:
{},
pagenum
:
1
,
pagenum
:
1
,
count
:
{},
count
:
{
all
:
0
,
pending
:
0
,
running
:
0
,
finished
:
0
,
},
pageRequest
:
false
,
pageRequest
:
false
,
hasError
:
false
,
hasError
:
false
,
pipelinesEmptyStateSVG
,
pipelinesEmptyStateSVG
,
...
@@ -127,6 +132,7 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
...
@@ -127,6 +132,7 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
All
All
</a>
</a>
<span class="badge js-totalbuilds-count">
<span class="badge js-totalbuilds-count">
{{count.all}}
</span>
</span>
</li>
</li>
<li
<li
...
@@ -135,25 +141,42 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
...
@@ -135,25 +141,42 @@ const CommitPipelinesStoreWithTimeAgo = require('../commit/pipelines/pipelines_s
<a :href="pendingPath">
<a :href="pendingPath">
Pending
Pending
</a>
</a>
<span class="badge"></span>
<span class="badge">
{{count.pending}}
</span>
</li>
</li>
<li
<li
class="js-pipelines-tab-running"
class="js-pipelines-tab-running"
:class="{ 'active': scope === 'running'}">
:class="{ 'active': scope === 'running'}">
<a :href="runningPath">Running</a>
<span class="badge"></span>
<a :href="runningPath">
Running
</a>
<span class="badge">
{{count.running}}
</span>
</li>
</li>
<li
<li
class="js-pipelines-tab-finished"
class="js-pipelines-tab-finished"
:class="{ 'active': scope === 'finished'}">
:class="{ 'active': scope === 'finished'}">
<a :href="finishedPath">Finished</a>
<span class="badge"></span>
<a :href="finishedPath">
Finished
</a>
<span class="badge">
{{count.finished}}
</span>
</li>
</li>
<li
<li
class="js-pipelines-tab-branches"
class="js-pipelines-tab-branches"
:class="{ 'active': scope === 'branches'}">
:class="{ 'active': scope === 'branches'}">
<a :href="branchesPath">Branches</a>
<a :href="branchesPath">Branches</a>
</li>
</li>
<li
<li
class="js-pipelines-tab-tags"
class="js-pipelines-tab-tags"
:class="{ 'active': scope === 'tags'}">
:class="{ 'active': scope === 'tags'}">
...
...
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