commit e21111ed61bf8e6b23fe1f1fc6858517533b79be parent 95a9563a06d2b8cdd7f1a66bb7f968013de393ee Author: Thien-Thi Nguyen <ttn@gnuvola.org> Date: Mon, 24 May 2021 09:15:58 -0400 fix typo: s/product/products/ Diffstat:
| M | packages/frontend/src/paths/instance/orders/create/InventoryProductForm.tsx | | | 5 | ++--- |
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/packages/frontend/src/paths/instance/orders/create/InventoryProductForm.tsx b/packages/frontend/src/paths/instance/orders/create/InventoryProductForm.tsx @@ -73,9 +73,9 @@ export function InventoryProductForm({ currentProducts, onAddProduct }: Props): return <FormProvider<Form> errors={errors} object={state} valueHandler={setState}> <InputSearchProduct selected={state.product} onChange={(p) => setState(v => ({ ...v, product: p }))} /> - <InputNumber<Form> name="quantity" label={i18n`Quantity`} tooltip={i18n`how many product will be added`} /> + <InputNumber<Form> name="quantity" label={i18n`Quantity`} tooltip={i18n`how many products will be added`} /> <div class="buttons is-right mt-5"> <button class="button is-success" onClick={submit}><Translate>Add</Translate></button> </div> </FormProvider> -} -\ No newline at end of file +}