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

runner_details_app.vue « runner_details « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b1485bfe722f5e50fa3cf6ab5441dfb5728c6f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
import { I18N_TITLE } from './constants';

export default {
  i18n: {
    I18N_TITLE,
  },
  props: {
    runnerId: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <h2 class="page-title">
    {{ sprintf($options.i18n.I18N_TITLE, { runner_id: runnerId }) }}
  </h2>
</template>