Commit 2e6c64f2 authored by Fatih Acet's avatar Fatih Acet

Fix conflicts on diff_table_cell.vue.

parent f91eaa9f
......@@ -11,11 +11,8 @@ import {
LINE_HOVER_CLASS_NAME,
LINE_UNFOLD_CLASS_NAME,
INLINE_DIFF_VIEW_TYPE,
<<<<<<< HEAD
LINE_POSITION_LEFT,
LINE_POSITION_RIGHT,
=======
>>>>>>> eba05eb8d48... Merge branch '_acet-mr-diff-performance' into 'master'
} from '../constants';
export default {
......@@ -70,7 +67,6 @@ export default {
computed: {
...mapGetters(['isLoggedIn']),
normalizedLine() {
<<<<<<< HEAD
let normalizedLine;
if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) {
......@@ -79,10 +75,6 @@ export default {
normalizedLine = this.line.left;
} else if (this.linePosition === LINE_POSITION_RIGHT) {
normalizedLine = this.line.right;
=======
if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) {
return this.line;
>>>>>>> eba05eb8d48... Merge branch '_acet-mr-diff-performance' into 'master'
}
return normalizedLine;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment