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

estimate_only_pane.js « 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: 309e9f2f9ef65ed15bff24f85c1c389c57e691bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* global Vue */
(() => {
  Vue.component('time-tracking-estimate-only-pane', {
    name: 'time-tracking-estimate-only-pane',
    props: ['timeEstimateHumanReadable'],
    template: `
      <div class='time-tracking-estimate-only-pane'>
        <span class='bold'>Estimated:</span>
        {{ timeEstimateHumanReadable }}
      </div>
    `,
  });
})();