summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/issue_discussion_locked_widget.vue
blob: 64466b04b40c8006dd5ca91653dfd603f928e263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>
  import Icon from '../../vue_shared/components/icon.vue';

  export default {
    component: {
      Icon,
    },
  };
</script>

<template>
  <div class="disabled-comment text-center">
    <span class="issuable-note-warning inline">
      <icon
        name="lock"
        :size="16"
        class="icon">
      </icon>
      <span>This issue is locked. Only <b>project members</b> can comment.</span>
     </span>
  </div>
</template>