summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/components/limit_warning_component.js
blob: 8d3d34f836f5e078eea0d2621ab84e8b32d37528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default {
  props: {
    count: {
      type: Number,
      required: true,
    },
  },
  template: `
    <span v-if="count === 50" class="events-info pull-right">
      <i class="fa fa-warning has-tooltip"
          aria-hidden="true"
          :title="n__('Limited to showing %d event at most', 'Limited to showing %d events at most', 50)"
          data-placement="top"></i>
      {{ n__('Showing %d event', 'Showing %d events', 50) }}
    </span>
  `,
};