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

activity_events_list.vue « components « abuse_report « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c4c1da28b84574a15bda7218980f4e8c99c24b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
import { HISTORY_ITEMS_I18N } from '../constants';

export default {
  name: 'ActivityEventsList',
  i18n: HISTORY_ITEMS_I18N,
};
</script>

<template>
  <!-- The styles `issuable-discussion`, `timeline`, `main-notes-list` and `notes` used below
       are declared in app/assets/stylesheets/pages/notes.scss -->
  <section class="gl-pt-6 issuable-discussion">
    <h2 class="gl-font-lg gl-mt-0 gl-mb-2">{{ $options.i18n.activity }}</h2>
    <ul class="timeline main-notes-list notes">
      <slot name="history-items"></slot>
    </ul>
  </section>
</template>