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

spent_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: 59cd99f8f1444f09d30139f0396481c9373e0802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
export default {
  name: 'TimeTrackingSpentOnlyPane',
  props: {
    timeSpentHumanReadable: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="time-tracking-spend-only-pane">
    <span class="bold">Spent:</span>
    {{ timeSpentHumanReadable }}
  </div>
</template>