summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/runner_details/runner_details_app.vue
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>