Welcome to mirror list, hosted at ThFree Co, Russian Federation.

spent_only_pane.js.es6 « components « time_tracking « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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>
    `,
  });
})();