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

estimate_only_pane.js « time_tracking « components « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d61fb26ed0dcc0f19263bc9fc5089c5317459b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default {
  name: 'time-tracking-estimate-only-pane',
  props: {
    timeEstimateHumanReadable: {
      type: String,
      required: true,
    },
  },
  template: `
    <div class='time-tracking-estimate-only-pane'>
      <span class='bold'>Estimated:</span>
      {{ timeEstimateHumanReadable }}
    </div>
  `,
};