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

issuable_discussion.vue « components « issuable_show « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5858af6cc515dc25abee94c38a47b0da5a79f95a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  name: 'IssuableDiscussion',
};
</script>

<template>
  <section class="issuable-discussion">
    <div>
      <ul class="notes main-notes-list timeline">
        <slot name="discussion"></slot>
      </ul>
    </div>
  </section>
</template>