Display number of shown events on Plan stage of Cycle Analytics

This commit is contained in:
Sam Rose 2017-02-07 10:41:02 -05:00
parent bf05c7e035
commit 8dced28a66
2 changed files with 10 additions and 1 deletions

View file

@ -13,6 +13,11 @@
<div>
<div class="events-description">
{{ stage.description }}
<span class="pull-right has-tooltip"
title="Limited to a maximum of 50 events"
data-placement="top">
Showing {{ items.length }} events
</span>
</div>
<ul class="stage-event-list">
<li v-for="commit in items" class="stage-event-item">

View file

@ -284,7 +284,11 @@
.events-description {
line-height: 65px;
padding-left: $gl-padding;
padding: 0 $gl-padding;
span {
color: $gl-text-color-secondary;
}
}
}