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: 45552589e5000fbaafe4979c217fbb43822c067a (plain)
1
2
3
4
5
6
7
8
9
10
11
<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>