diff --git a/app/components/modals/cropper-modal.js b/app/components/modals/cropper-modal.js index 9ef7604bb4b..3afa0e130a0 100644 --- a/app/components/modals/cropper-modal.js +++ b/app/components/modals/cropper-modal.js @@ -32,7 +32,7 @@ export default ModalBase.extend({ this.onVisible(); }, 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); }