From 0879f51f48ffc477b448f94891403f3b1b9b8985 Mon Sep 17 00:00:00 2001 From: Jonathan van Rij Date: Tue, 16 Jun 2026 08:18:10 +0200 Subject: [PATCH] green on the full screen dif --- src/renderer/src/editor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/src/editor.tsx b/src/renderer/src/editor.tsx index f1e1245..e726417 100644 --- a/src/renderer/src/editor.tsx +++ b/src/renderer/src/editor.tsx @@ -368,7 +368,7 @@ export function SplitView({ path, onClose, onContext }: {
Original before
sync(leftRef.current, rightRef.current)} onContextMenu={ctx}> {diff.split.map((row, i) => ( -
+
{row.l ? row.l.no : ''}
@@ -379,7 +379,7 @@ export function SplitView({ path, onClose, onContext }: {
Updated after
sync(rightRef.current, leftRef.current)} onContextMenu={ctx}> {diff.split.map((row, i) => ( -
+
{row.r ? row.r.no : ''}