summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/issue/confidential_issue_warning.vue
blob: 397d16331d58fce8df92626553af6a542ce0744e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
  export default {
    name: 'confidentialIssueWarning',
  };
</script>
<template>
  <div class="confidential-issue-warning">
    <i
    aria-hidden="true"
    class="fa fa-eye-slash">
    </i>
    <span>
      This is a confidential issue. Your comment will not be visible to the public.
    </span>
  </div>
</template>