No differences — these versions are identical.
{#if !selectedFile}
Select a file to see its changes.
{:else if splitRows.length === 0}
No textual changes for this file.
{:else}
syncSplitScroll("before")}
>
{#each splitRows as row, i (`left-${i}`)}
{#if row.type === "span"}
{row.text}
{:else}
{row.leftNum ?? ""}
{row.leftText ?? " "}
{/if}
{/each}
syncSplitScroll("after")}
>
{#each splitRows as row, i (`right-${i}`)}
{#if row.type === "span"}
{row.text}
{:else}
{row.rightNum ?? ""}
{row.rightText ?? " "}
{/if}
{/each}
{/if}