diff --git a/public/index.html b/public/index.html index 84701c4..3245bf9 100644 --- a/public/index.html +++ b/public/index.html @@ -1138,6 +1138,8 @@

No Staged Changes

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();