summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/components/issue_placeholder_system_note.vue
blob: 80a8ef56a8318c4c50321ef6b3fc6d1430afb4b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
  export default {
    name: 'placeholderSystemNote',
    props: {
      note: {
        type: Object,
        required: true,
      },
    },
  };
</script>

<template>
  <li class="note system-note timeline-entry being-posted fade-in-half">
   <div class="timeline-entry-inner">
     <div class="timeline-content">
       <em>{{note.body}}</em>
     </div>
   </div>
  </li>
</template>