summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issuable/time_tracking/components/spent_only_pane.js
blob: edb9169112ff65bea6920329a314948abbce13d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Vue from '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>
    `,
  });
})();