summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/time_tracking/spent_only_pane.vue
blob: 7c7356e2afad5394b4904bdd55711775a6319bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>