fix: stabilize history diff loading and comments

Prevents History file loading from getting stuck
Disables inline comments in History diffs
Keeps review comments available in regular diff views
This commit is contained in:
Bohdan Triapitsyn
2026-06-17 02:02:01 +03:00
parent ada6d417a0
commit 253094cb1d
3 changed files with 55 additions and 15 deletions
@@ -660,10 +660,11 @@ export const HistoryCommitRow = React.memo(({
original={cached.original}
modified={cached.modified}
language={getLanguageFromExtension(file.path) || ''}
fileName={file.path}
renderSideBySide={false}
layout="inline"
/>
fileName={file.path}
renderSideBySide={false}
layout="inline"
enableComments={false}
/>
);
})()}
</div>