fix error case

[ci skip]
This commit is contained in:
Michael Shamoon 2022-04-07 23:06:46 -07:00
parent eb5e0e0b9b
commit b5a75be1db

View File

@ -161,7 +161,10 @@ export class DocumentListViewService {
this.reload()
} else {
let errorMessage
if (Object.keys(error.error).length > 0) {
if (
typeof error.error !== 'string' &&
Object.keys(error.error).length > 0
) {
// e.g. { archive_serial_number: Array<string> }
errorMessage = Object.keys(error.error)
.map((fieldName) => {