summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/shared/wikis/components/wiki_alert.vue
blob: 6cea26f2bed57c1a71175284fbd7cf64546483ef (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
<script>
import { GlAlert, GlLink, GlSprintf } from '@gitlab/ui';

export default {
  components: {
    GlAlert,
    GlLink,
    GlSprintf,
  },
  props: {
    error: {
      type: String,
      required: true,
    },
    wikiPagePath: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-alert variant="danger" :dismissible="false">
    <gl-sprintf :message="error">
      <template #wikiLink="{ content }">
        <gl-link :href="wikiPagePath" target="_blank">{{ content }}</gl-link>
      </template>
    </gl-sprintf>
  </gl-alert>
</template>