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

app.vue « bridge « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67c22712776239c5279345b3bb93288a168f413f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
import BridgeEmptyState from './components/empty_state.vue';
import BridgeSidebar from './components/sidebar.vue';

export default {
  name: 'BridgePageApp',
  components: {
    BridgeEmptyState,
    BridgeSidebar,
  },
};
</script>
<template>
  <div>
    <!-- TODO: get job details and show CI header -->
    <!-- TODO: add downstream pipeline path -->
    <bridge-empty-state downstream-pipeline-path="#" />
    <bridge-sidebar />
  </div>
</template>