diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/containers/ProductForm.tsx | 2 | ||||
-rw-r--r-- | src/containers/WaybillForm.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx index 060fbbb..6957916 100644 --- a/src/containers/ProductForm.tsx +++ b/src/containers/ProductForm.tsx @@ -7,7 +7,7 @@ const ProductForm: React.FC = () => { return ( <Form id="form"> <Input name="name" label="Название" /> - <Input name="price" type="number" label="Цена ($)" /> + <Input name="price" type="number" label="Цена" /> </Form> ); }; diff --git a/src/containers/WaybillForm.tsx b/src/containers/WaybillForm.tsx index 5fcdb7d..a924cc5 100644 --- a/src/containers/WaybillForm.tsx +++ b/src/containers/WaybillForm.tsx @@ -63,7 +63,7 @@ const WaybillForm: React.FC<FormikProps> = ({ setFieldValue, values }) => { <Input name={`records.${index}.price`} type="number" - label="Цена, $" + label="Цена" required /> <Input |