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

no_tracking_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: 9228184df5b88858e38281821fde8d8e35741047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
export default {
  name: 'TimeTrackingNoTrackingPane',
};
</script>

<template>
  <div class="time-tracking-no-tracking-pane">
    <span class="no-value">
      {{ __('No estimate or time spent') }}
    </span>
  </div>
</template>