Update collection create/update endpoints to strip html tags from collection name

This commit is contained in:
advplyr 2026-03-19 16:53:21 -05:00
parent efe2a22674
commit 9821c31f8e
2 changed files with 12 additions and 6 deletions

View file

@ -227,7 +227,7 @@ export default {
.catch((error) => {
console.error('Failed to create collection', error)
var errMsg = error.response ? error.response.data || '' : ''
this.$toast.error(this.$strings.ToastCollectionCreateFailed + ': ' + errMsg)
this.$toast.error(errMsg)
this.processing = false
})
}