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

admin_jobs_table_app.vue « table « components « index « jobs « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5a0509b625272665e696918da1f5d4e13e07d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
export default {
  inject: {
    jobStatuses: {
      default: null,
    },
    url: {
      default: '',
    },
    emptyStateSvgPath: {
      default: '',
    },
  },
};
</script>

<template>
  <div>{{ __('Jobs') }}</div>
</template>