summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/components/inline_conflict_lines.js
blob: 240c8f98932aa3b309883763a36a1298a3478b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable no-param-reassign, comma-dangle */
/* global Vue */

((global) => {
  global.mergeConflicts = global.mergeConflicts || {};

  global.mergeConflicts.inlineConflictLines = Vue.extend({
    props: {
      file: Object
    },
    mixins: [global.mergeConflicts.utils, global.mergeConflicts.actions],
  });
})(window.gl || (window.gl = {}));