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

app.vue « components « comment_templates « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de3229acc78cd1f4910a910c55007064699897ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
export default {};
</script>

<template>
  <div class="settings-section gl-mt-3">
    <div class="settings-sticky-header">
      <div class="settings-sticky-header-inner">
        <h4 class="gl-my-0">
          {{ __('Comment templates') }}
        </h4>
      </div>
    </div>
    <p class="gl-text-secondary">
      {{
        __(
          'Comment templates can be used when creating comments inside issues, merge requests, and epics.',
        )
      }}
    </p>
    <keep-alive><router-view /></keep-alive>
  </div>
</template>