From 74077696f07d277317d9c35445979a01a0a3469c Mon Sep 17 00:00:00 2001 From: Mark Street Date: Tue, 24 Mar 2026 08:25:09 +0000 Subject: [PATCH] Bugfix maligned cells --- .../src/components/Diff/DiffRowAsmDiffer.tsx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/Diff/DiffRowAsmDiffer.tsx b/frontend/src/components/Diff/DiffRowAsmDiffer.tsx index d8c864c77..d6b94980c 100644 --- a/frontend/src/components/Diff/DiffRowAsmDiffer.tsx +++ b/frontend/src/components/Diff/DiffRowAsmDiffer.tsx @@ -151,15 +151,13 @@ export const DiffRow = memo(function DiffRow({ row.isPlaceholder ? () => data.onToggle(row.key) : undefined } > - {row.cells.map((cell, i) => - cell ? ( - - ) : null, - )} + {row.cells.map((cell, i) => ( + + ))} ); }, areEqual);