Chore: Update backend dependencies in bulk (#7656)

This commit is contained in:
Trenton H 2024-09-08 13:03:38 -07:00 committed by GitHub
parent 3df8be0bc7
commit 3813dc2e18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1411 additions and 1214 deletions

View file

@ -298,8 +298,9 @@ export class DocumentListViewService {
errorMessage = Object.keys(error.error)
.map((fieldName) => {
const fieldError: Array<string> = error.error[fieldName]
return `${this.sortFields.find((f) => f.field == fieldName)
?.name}: ${fieldError[0]}`
return `${
this.sortFields.find((f) => f.field == fieldName)?.name
}: ${fieldError[0]}`
})
.join(', ')
} else {