added some translations
This commit is contained in:
@@ -129,7 +129,7 @@ export default function ProductInfo({ item }: { item: Item }) {
|
||||
<Stack direction="row" spacing={2} alignItems="center">
|
||||
<TextField
|
||||
type="number"
|
||||
label="Quantity"
|
||||
label={t('quantity')}
|
||||
value={quantity}
|
||||
onChange={(e) => setQuantity(Math.max(1, parseInt(e.target.value)))}
|
||||
InputProps={{ inputProps: { min: 1, max: item.stock } }}
|
||||
|
||||
Reference in New Issue
Block a user