Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1138,6 +1138,8 @@ <h3>No Staged Changes</h3>
const fragment = document.createDocumentFragment();

// Enhanced file processing with better icons and metadata
// ⚡ Bolt: Batch DOM insertions using a DocumentFragment to prevent O(N) layout thrashing
const fragment = document.createDocumentFragment();
data.files.forEach((file, index) => {
const fileId = file.replace(/[^a-zA-Z0-9]/g, '_');
const fileExt = file.substring(file.lastIndexOf('.')).toLowerCase();
Expand Down
Loading