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

timeline_events_tab.vue « incidents « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec101fd943fdb58edab4409e8be85a44fb565918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
import { GlTab, GlButton } from '@gitlab/ui';

export default {
  components: {
    GlTab,
    GlButton,
  },
};
</script>

<template>
  <gl-tab :title="s__('Incident|Timeline')">
    <div class="gl-my-4">
      <p>{{ s__('Incident|No timeline items have been added yet.') }}</p>
    </div>
    <gl-button class="gl-my-3">
      {{ s__('Incident|Add new timeline event') }}
    </gl-button>
  </gl-tab>
</template>