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

page_title.vue « components « kubernetes_dashboard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f0fbd6179800135458d9228a9f1d8109aa886ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<script>
import { GlIcon, GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  i18n: {
    agentTitle: s__('KubernetesDashboard|Agent %{name} ID #%{id}'),
  },
  components: {
    GlSprintf,
    GlIcon,
  },
  inject: ['agent'],
};
</script>

<template>
  <div class="gl-display-flex gl-align-items-center">
    <h1 class="gl-heading-2"><slot></slot></h1>
    <div class="gl-ml-4 gl-mb-5">
      <gl-icon name="kubernetes-agent" class="gl-text-gray-500" />
      <gl-sprintf :message="$options.i18n.agentTitle">
        <template #name> {{ agent.name }} </template>
        <template #id>{{ agent.id }}</template>
      </gl-sprintf>
    </div>
  </div>
</template>