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

draft_comments.js « mixins « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6c9b132aebedb450e1502933310cef3eb92b8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
  computed: {
    shouldRenderDraftRow: () => () => false,
    shouldRenderParallelDraftRow: () => () => false,
    draftForLine: () => () => ({}),
    imageDiscussions() {
      return this.diffFile.discussions;
    },
    hasParallelDraftLeft: () => () => false,
    hasParallelDraftRight: () => () => false,
  },
};