Commit 659a0245 authored by Fatih Acet's avatar Fatih Acet

Fix conflicts on diff_table_cell.

parent 644fc958
...@@ -10,12 +10,9 @@ import { ...@@ -10,12 +10,9 @@ import {
NEW_NO_NEW_LINE_TYPE, NEW_NO_NEW_LINE_TYPE,
LINE_HOVER_CLASS_NAME, LINE_HOVER_CLASS_NAME,
LINE_UNFOLD_CLASS_NAME, LINE_UNFOLD_CLASS_NAME,
<<<<<<< HEAD
=======
INLINE_DIFF_VIEW_TYPE, INLINE_DIFF_VIEW_TYPE,
LINE_POSITION_LEFT, LINE_POSITION_LEFT,
LINE_POSITION_RIGHT, LINE_POSITION_RIGHT,
>>>>>>> 4c1a2a9b997... Merge branch '_acet-fix-parallel-diff-lines' into 'master'
} from '../constants'; } from '../constants';
export default { export default {
...@@ -65,10 +62,6 @@ export default { ...@@ -65,10 +62,6 @@ export default {
computed: { computed: {
...mapGetters(['isLoggedIn', 'isInlineView']), ...mapGetters(['isLoggedIn', 'isInlineView']),
normalizedLine() { normalizedLine() {
<<<<<<< HEAD
if (this.isInlineView) {
return this.line;
=======
let normalizedLine; let normalizedLine;
if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) { if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) {
...@@ -77,7 +70,6 @@ export default { ...@@ -77,7 +70,6 @@ export default {
normalizedLine = this.line.left; normalizedLine = this.line.left;
} else if (this.linePosition === LINE_POSITION_RIGHT) { } else if (this.linePosition === LINE_POSITION_RIGHT) {
normalizedLine = this.line.right; normalizedLine = this.line.right;
>>>>>>> 4c1a2a9b997... Merge branch '_acet-fix-parallel-diff-lines' into 'master'
} }
return normalizedLine; 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