commit 55903091bc8cae3b0478b272e3a5351f996bf941
parent e659b0b1e0b0461243113909934e639f851905f9
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Mon, 24 May 2021 09:28:17 -0400
add hyphen
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/frontend/src/components/product/ProductForm.tsx b/packages/frontend/src/components/product/ProductForm.tsx
@@ -98,7 +98,7 @@ export function ProductForm({ onSubscribe, initial, alreadyExist, }: Props) {
{alreadyExist ? undefined : <InputWithAddon<Entity> name="product_id" addonBefore={`${backend.url}/product/`} label={i18n`ID`} tooltip={i18n`unique name identification`} />}
<InputImage<Entity> name="image" label={i18n`Image`} tooltip={i18n`photo of the product`} />
- <Input<Entity> name="description" inputType="multiline" label={i18n`Description`} tooltip={i18n`full length description`} />
+ <Input<Entity> name="description" inputType="multiline" label={i18n`Description`} tooltip={i18n`full-length description`} />
<Input<Entity> name="unit" label={i18n`Unit`} tooltip={i18n`name of the product unit`} />
<InputCurrency<Entity> name="price" label={i18n`Price`} tooltip={i18n`amount in the current currency`} />