diff --git a/src/features/labels/label-create-page.js b/src/features/labels/label-create-page.js index 0962e08..9fc7bf7 100644 --- a/src/features/labels/label-create-page.js +++ b/src/features/labels/label-create-page.js @@ -558,8 +558,8 @@ export function labelCreatePageData(store) { this.form.description = item.description || this.form.description; this.form.uom = item.uom_symbol || this.form.uom; this.form.quantity = - item.quantity - ? String(item.quantity) + item.quantity_initial + ? String(item.quantity_initial) : this.form.quantity; this.form.stockType = item.stock_type || this.form.stockType; this.form.level = item.level || this.form.level;