Test frontend #only_compile

This commit is contained in:
2023-10-26 00:08:06 -05:00
parent c2e9a4af05
commit 367e4ba0ea
4 changed files with 5 additions and 4 deletions

View File

@@ -71,6 +71,7 @@ async function uploadFileChangeHandler(event: Event) {
const end = Math.min(file.size, start + chunkSize)
const res = await sendChunk(file, start, end)
console.log( 'progress: '+ (100*i + 1) / numChunks )
console.log( 'Num Chunks: '+ numChunks )
documentStore.updateUploadingDocuments( document.key, (100*i + 1) / numChunks)
}
}