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:
authorPhil Hughes <me@iamphill.com>2018-03-01 17:25:13 +0300
committerPhil Hughes <me@iamphill.com>2018-03-02 11:42:02 +0300
commit4927cb75e6ab82500b3d055f35ea621483c224fe (patch)
tree5f6aab32e6e666ea34fcf67ae6a474802c747a0c /app/assets/javascripts/ide/components/repo_tabs.vue
parentf29dbaf55cc0c8a4b80c153454a2f7e22fd7a827 (diff)
Remove IDE from CE
Diffstat (limited to 'app/assets/javascripts/ide/components/repo_tabs.vue')
-rw-r--r--app/assets/javascripts/ide/components/repo_tabs.vue27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/assets/javascripts/ide/components/repo_tabs.vue b/app/assets/javascripts/ide/components/repo_tabs.vue
deleted file mode 100644
index ca363bba0ef..00000000000
--- a/app/assets/javascripts/ide/components/repo_tabs.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-<script>
- import { mapState } from 'vuex';
- import RepoTab from './repo_tab.vue';
-
- export default {
- components: {
- 'repo-tab': RepoTab,
- },
- computed: {
- ...mapState([
- 'openFiles',
- ]),
- },
- };
-</script>
-
-<template>
- <ul
- class="multi-file-tabs list-unstyled append-bottom-0"
- >
- <repo-tab
- v-for="tab in openFiles"
- :key="tab.key"
- :tab="tab"
- />
- </ul>
-</template>