This commit is contained in:
jonaswinkler
2020-12-07 12:44:23 +01:00
parent fcaaf7ce03
commit e2456f4b3f
6 changed files with 25 additions and 24 deletions

View File

@@ -29,7 +29,7 @@ export class UploadFileWidgetComponent implements OnInit {
const formData = new FormData()
formData.append('document', file, file.name)
this.documentService.uploadDocument(formData).subscribe(result => {
this.toastService.showInfo(The document has been uploaded and will be processed by the consumer shortly.")
this.toastService.showInfo("The document has been uploaded and will be processed by the consumer shortly.")
}, error => {
switch (error.status) {
case 400: {