summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/time_tracking/estimate_only_pane.vue
blob: 8a80b1bf13f8f885dd7623292d70cf49570d220d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
export default {
  name: 'TimeTrackingEstimateOnlyPane',
  props: {
    timeEstimateHumanReadable: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div data-testid="estimateOnlyPane">
    <span class="gl-font-weight-bold">{{ s__('TimeTracking|Estimated:') }} </span
    >{{ timeEstimateHumanReadable }}
  </div>
</template>