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

note_attachment.vue « components « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b20facc40329c02f6628757be6ebf3e2801a9b02 (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 { GlIcon } from '@gitlab/ui';

export default {
  name: 'NoteAttachment',
  components: {
    GlIcon,
  },
  props: {
    attachment: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div class="note-attachment">
    <a
      v-if="attachment.image"
      ref="attachmentImage"
      :href="attachment.url"
      target="_blank"
      rel="noopener noreferrer"
    >
      <img :src="attachment.url" class="note-image-attach" />
    </a>
    <div class="attachment">
      <a
        v-if="attachment.url"
        ref="attachmentUrl"
        :href="attachment.url"
        target="_blank"
        rel="noopener noreferrer"
      >
        <gl-icon name="paperclip" /> {{ attachment.filename }}
      </a>
    </div>
  </div>
</template>