summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/time_tracking/help_state.js
blob: b2a77462fe0d45ad608dd77a18f4abe8b96db037 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
export default {
  name: 'time-tracking-help-state',
  props: {
    rootPath: {
      type: String,
      required: true,
    },
  },
  computed: {
    href() {
      return `${this.rootPath}help/workflow/time_tracking.md`;
    },
  },
  template: `
    <div class="time-tracking-help-state">
      <div class="time-tracking-info">
        <h4>
          Track time with slash commands
        </h4>
        <p>
          Slash commands can be used in the issues description and comment boxes.
        </p>
        <p>
          <code>
            /estimate
          </code>
          will update the estimated time with the latest command.
        </p>
        <p>
          <code>
            /spend
          </code>
          will update the sum of the time spent.
        </p>
        <a
          class="btn btn-default learn-more-button"
          :href="href"
        >
          Learn more
        </a>
      </div>
    </div>
  `,
};