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

inline_draft_comment_row.vue « components « batch_comments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 385725cd10920052974598a9243ef981385e77a0 (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
32
<script>
import DraftNote from './draft_note.vue';

export default {
  components: {
    DraftNote,
  },
  props: {
    draft: {
      type: Object,
      required: true,
    },
    diffFile: {
      type: Object,
      required: true,
    },
    line: {
      type: Object,
      required: false,
      default: null,
    },
  },
};
</script>

<template>
  <tr class="notes_holder js-temp-notes-holder">
    <td class="notes-content" colspan="4">
      <div class="content"><draft-note :draft="draft" :diff-file="diffFile" :line="line" /></div>
    </td>
  </tr>
</template>