Commit 2afa9308 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'ph/336568/stopCachingDiffLineContent' into 'master'

Fixes diff line content getting cached on the frontend

See merge request gitlab-org/gitlab!67402
parents cca5bbda d6cb333c
...@@ -140,16 +140,13 @@ export default { ...@@ -140,16 +140,13 @@ export default {
}, },
(line) => line.type, (line) => line.type,
), ),
lineContent: memoize( lineContent: (line) => {
(line) => { if (line.isConflictMarker) {
if (line.isConflictMarker) { return line.type === CONFLICT_MARKER_THEIR ? 'HEAD//our changes' : 'origin//their changes';
return line.type === CONFLICT_MARKER_THEIR ? 'HEAD//our changes' : 'origin//their changes'; }
}
return line.rich_text; return line.rich_text;
}, },
(line) => line.line_code,
),
CONFLICT_MARKER, CONFLICT_MARKER,
CONFLICT_MARKER_THEIR, CONFLICT_MARKER_THEIR,
CONFLICT_OUR, CONFLICT_OUR,
......
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