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

estimate_only_pane.vue « time_tracking « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08fce597e5060c7983293692983736e8129af32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
export default {
  name: 'TimeTrackingEstimateOnlyPane',
  props: {
    timeEstimateHumanReadable: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="time-tracking-estimate-only-pane">
    <span class="bold">
      {{ s__('TimeTracking|Estimated:') }}
    </span>
    {{ timeEstimateHumanReadable }}
  </div>
</template>