Skip to content
Snippets Groups Projects
Unverified Commit 7a5c9f8a authored by Phil Hughes's avatar Phil Hughes
Browse files

Fixed parallel discussions throwing an error

parent efbb9501
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -149,8 +149,8 @@ export default {
 
if (left || right) {
return {
left: mapDiscussions(line.left),
right: mapDiscussions(line.right, () => !left),
left: line.left ? mapDiscussions(line.left) : null,
right: line.right ? mapDiscussions(line.right, () => !left) : null,
};
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment