summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issuable/time_tracking/components/spent_only_pane.js
blob: ed283fec3c353f1c01339e716c80b92491f3a111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* global Vue */
(() => {
  Vue.component('time-tracking-spent-only-pane', {
    name: 'time-tracking-spent-only-pane',
    props: ['timeSpentHumanReadable'],
    template: `
      <div class='time-tracking-spend-only-pane'>
        <span class='bold'>Spent:</span>
        {{ timeSpentHumanReadable }}
      </div>
    `,
  });
})();