Test frontend #only_compile

This commit is contained in:
2023-10-26 00:05:11 -05:00
parent 19699564c2
commit 6cdc37a172
5 changed files with 7 additions and 5 deletions

View File

@@ -103,6 +103,7 @@ function next(direction: number){
.centered {
display: flex;
justify-content: center;
align-content: center;
}
.centered-vertically {

View File

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