Form/PaymentsTable: add props to input

This commit is contained in:
Chika 2022-07-06 21:05:39 +03:00
parent 1442f96f12
commit b3a5680265

View File

@ -25,7 +25,7 @@ export const columns: ColumnsType<Payment> = [
render: (_value, payment) => {
const Component = buildValueComponent(payment.num, InputNumber);
return <Component />;
return <Component min={0.01} max={100} step={1} precision={2} />;
},
},
];