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

organization_description.vue « components « show « organizations « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6222bdcd082c5190135f23e01409ec6d80435998 (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
<script>
import SafeHtml from '~/vue_shared/directives/safe_html';

export default {
  name: 'OrganizationDescription',
  directives: {
    SafeHtml,
  },
  props: {
    organization: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div
    v-if="organization.description_html"
    v-safe-html="organization.description_html"
    class="gl-mt-5 md"
  ></div>
</template>