summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/components/commit_widget.vue
blob: 3fb11813d688000c0c201b057ca11a9e4ac4fd9b (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
33
34
35
36
37
38
<script>
import CommitItem from './commit_item.vue';

/**
 * CommitWidget
 *
 * -----------------------------------------------------------------
 * WARNING: Please keep changes up-to-date with the following files:
 * - `views/projects/merge_requests/diffs/_commit_widget.html.haml`
 * -----------------------------------------------------------------
 *
 * This Component was cloned from a HAML view. For the time being,
 * they coexist, but there is an issue to remove the duplication.
 * https://gitlab.com/gitlab-org/gitlab-ce/issues/51613
 *
 */
export default {
  components: {
    CommitItem,
  },
  props: {
    commit: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div class="info-well prepend-top-default">
    <div class="well-segment">
      <ul class="blob-commit-info">
        <commit-item :commit="commit" />
      </ul>
    </div>
  </div>
</template>