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

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

export default {
  props: {
    folderName: {
      type: String,
      required: true,
    },
  },
  i18n: {
    pageTitle: s__('Environments|Environments'),
  },
};
</script>
<template>
  <h4 class="gl-font-weight-normal" data-testid="folder-name">
    {{ $options.i18n.pageTitle }} /
    <b>{{ folderName }}</b>
  </h4>
</template>