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

no_tracking_pane.js « components « time_tracking « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b081adf5e643b210b4c1603995d78d2ce55ff05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Vue from 'vue';

(() => {
  Vue.component('time-tracking-no-tracking-pane', {
    name: 'time-tracking-no-tracking-pane',
    template: `
      <div class='time-tracking-no-tracking-pane'>
        <span class='no-value'>No estimate or time spent</span>
      </div>
    `,
  });
})();