diff --git a/app/components/modals/cropper-modal.js b/app/components/modals/cropper-modal.js index 3bfe84bc1c8..f6cbe83dede 100644 --- a/app/components/modals/cropper-modal.js +++ b/app/components/modals/cropper-modal.js @@ -33,11 +33,10 @@ export default class extends ModalBase { } @action cropImage() { - this.$('img').croppie('result', 'base64', 'original', 'jpeg').then(result => { + this.$('img').croppie('result', { type: 'base64', size: 'original', quality: 1, format: 'jpeg' }).then(result => { if (this.onImageCrop) { this.onImageCrop(result); } }); } } -