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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/issue_show/components/incident_tabs.vue')
-rw-r--r--app/assets/javascripts/issue_show/components/incident_tabs.vue26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/assets/javascripts/issue_show/components/incident_tabs.vue b/app/assets/javascripts/issue_show/components/incident_tabs.vue
new file mode 100644
index 00000000000..f6e82cfaa74
--- /dev/null
+++ b/app/assets/javascripts/issue_show/components/incident_tabs.vue
@@ -0,0 +1,26 @@
+<script>
+import { GlTab, GlTabs } from '@gitlab/ui';
+import DescriptionComponent from './description.vue';
+
+export default {
+ components: {
+ GlTab,
+ GlTabs,
+ DescriptionComponent,
+ },
+};
+</script>
+
+<template>
+ <div>
+ <gl-tabs
+ content-class="gl-reset-line-height gl-mt-3"
+ class="gl-mt-n3"
+ data-testid="incident-tabs"
+ >
+ <gl-tab :title="__('Summary')">
+ <description-component v-bind="$attrs" />
+ </gl-tab>
+ </gl-tabs>
+ </div>
+</template>