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

Fix conflicts on diff_table_cell.vue.

parent f91eaa9f
...@@ -11,11 +11,8 @@ import { ...@@ -11,11 +11,8 @@ import {
LINE_HOVER_CLASS_NAME, LINE_HOVER_CLASS_NAME,
LINE_UNFOLD_CLASS_NAME, LINE_UNFOLD_CLASS_NAME,
INLINE_DIFF_VIEW_TYPE, INLINE_DIFF_VIEW_TYPE,
<<<<<<< HEAD
LINE_POSITION_LEFT, LINE_POSITION_LEFT,
LINE_POSITION_RIGHT, LINE_POSITION_RIGHT,
=======
>>>>>>> eba05eb8d48... Merge branch '_acet-mr-diff-performance' into 'master'
} from '../constants'; } from '../constants';
export default { export default {
...@@ -70,7 +67,6 @@ export default { ...@@ -70,7 +67,6 @@ export default {
computed: { computed: {
...mapGetters(['isLoggedIn']), ...mapGetters(['isLoggedIn']),
normalizedLine() { normalizedLine() {
<<<<<<< HEAD
let normalizedLine; let normalizedLine;
if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) { if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) {
...@@ -79,10 +75,6 @@ export default { ...@@ -79,10 +75,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;
=======
if (this.diffViewType === INLINE_DIFF_VIEW_TYPE) {
return this.line;
>>>>>>> eba05eb8d48... Merge branch '_acet-mr-diff-performance' 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