All files / app/assets/javascripts/sidebar/components/time_tracking spent_only_pane.vue

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32        7x                                                      
<script>
import { GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale';
 
const timeSpent = s__('TimeTracking|%{spentStart}Spent: %{spentEnd}');
 
export default {
  name: 'TimeTrackingSpentOnlyPane',
  timeSpent,
  components: {
    GlSprintf,
  },
  props: {
    timeSpentHumanReadable: {
      type: String,
      required: true,
    },
  },
};
</script>
 
<template>
  <div data-testid="spentOnlyPane">
    <gl-sprintf :message="$options.timeSpent">
      <template #spent="{ content }">
        <span class="gl-font-weight-bold">{{ content }}</span
        >{{ timeSpentHumanReadable }}
      </template>
    </gl-sprintf>
  </div>
</template>