diff --git a/client/web/compose/src/components/PageBlocks/ContentBase.vue b/client/web/compose/src/components/PageBlocks/ContentBase.vue index e9e042a8e2..150a8e706c 100644 --- a/client/web/compose/src/components/PageBlocks/ContentBase.vue +++ b/client/web/compose/src/components/PageBlocks/ContentBase.vue @@ -20,20 +20,15 @@ export default { computed: { contentBody () { - try { - const { body = '' } = this.options + const { body = '' } = this.options - return evaluatePrefilter(body, { - record: this.record, - user: this.$auth.user || {}, - recordID: (this.record || {}).recordID || NoID, - ownerID: (this.record || {}).ownedBy || NoID, - userID: (this.$auth.user || {}).userID || NoID, - }) - } catch (e) { - this.toastErrorHandler(e) - return '' - } + return evaluatePrefilter(body, { + record: this.record, + user: this.$auth.user || {}, + recordID: (this.record || {}).recordID || NoID, + ownerID: (this.record || {}).ownedBy || NoID, + userID: (this.$auth.user || {}).userID || NoID, + }) }, }, }