Better error handling

This commit is contained in:
taehoon 2019-02-08 22:17:53 -05:00
parent 2132d58075
commit 2de756aa0c
3 changed files with 5 additions and 2 deletions

View file

@ -50,6 +50,9 @@ const ImageCropper = {
},
cancelText () {
return this.cancelButtonLabel || this.$t('image_cropper.cancel')
},
submitErrorMsg () {
return this.submitError && this.submitError instanceof Error ? this.submitError.toString() : this.submitError
}
},
methods: {