Fix: initial upload message not being dismissed (#7438)

This commit is contained in:
shamoon 2024-08-10 08:32:06 -07:00 committed by GitHub
parent 4711468598
commit 5fe846de1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,7 @@ export class UploadDocumentsService {
)
status.message = $localize`Uploading...`
} else if (event.type == HttpEventType.Response) {
status.taskId = event.body['task_id']
status.taskId = event.body['task_id'] ?? event.body.toString()
status.message = $localize`Upload complete, waiting...`
this.uploadSubscriptions[file.name]?.complete()
}