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

spent_only_pane.js « 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: bf9875626475ed024a4d5454a08d934b843813f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default {
  name: 'time-tracking-spent-only-pane',
  props: {
    timeSpentHumanReadable: {
      type: String,
      required: true,
    },
  },
  template: `
    <div class="time-tracking-spend-only-pane">
      <span class="bold">Spent:</span>
      {{ timeSpentHumanReadable }}
    </div>
  `,
};