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

file_sha.vue « components « details « infrastructure_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a25839be7e154fa48ec7aaa4302b250fb72e4e95 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
<script>
import { s__ } from '~/locale';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import DetailsRow from '~/vue_shared/components/registry/details_row.vue';

export default {
  name: 'FileSha',
  components: {
    DetailsRow,
    ClipboardButton,
  },
  props: {
    sha: {
      type: String,
      required: true,
    },
    title: {
      type: String,
      required: true,
    },
  },
  i18n: {
    copyButtonTitle: s__('PackageRegistry|Copy SHA'),
  },
};
</script>

<template>
  <details-row dashed>
    <div class="gl-px-4">
      {{ title }}:
      {{ sha }}
      <clipboard-button
        :text="sha"
        :title="$options.i18n.copyButtonTitle"
        category="tertiary"
        size="small"
      />
    </div>
  </details-row>
</template>