diff --git a/ghost/admin/app/components/modal-product-price.js b/ghost/admin/app/components/modal-product-price.js index 4e853b2725..0e1d579329 100644 --- a/ghost/admin/app/components/modal-product-price.js +++ b/ghost/admin/app/components/modal-product-price.js @@ -107,7 +107,7 @@ export default class ModalProductPrice extends ModalBase { message: 'Please enter name' }]); } - if (isNaN(this.price.amount)) { + if (isNaN(this.price.amount) || this.price.amount === '') { this.errors.set('amount', [{ message: 'Please enter amount' }]);