summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-21 12:45:35 +0300
committereug-vs <eug-vs@keemail.me>2021-03-21 12:45:35 +0300
commit7f523b8ebaaf913191ac76e279174e2464dcef0e (patch)
tree5f56ab3d1beb01a7e040caa963ee9587cf1b7980
parent786dc90d89dbb2deaef0282301d88b1568d56a33 (diff)
downloadcommercel-ui-7f523b8ebaaf913191ac76e279174e2464dcef0e.tar.gz
feat: remove $ label from price
-rw-r--r--src/containers/ProductForm.tsx2
-rw-r--r--src/containers/WaybillForm.tsx2
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