fix: ru locale for numbers

This commit is contained in:
2025-09-21 10:18:06 +04:00
parent 6d6c430e88
commit 41ff994ad1
3 changed files with 9 additions and 0 deletions

View File

@ -56,6 +56,8 @@ const useProductServicesTableColumns = ({
{
accessor: "price",
title: "Цена",
render: productService =>
productService.price.toLocaleString("ru"),
footer: data.length > 0 && (
<Box my={"sm"}>
<Text fw={700}>

View File

@ -27,6 +27,8 @@ const useDealServicesTableColumns = ({ onChange, onDelete }: Props) => {
accessor: "price",
title: "Цена",
width: "30%",
render: dealService =>
dealService.price.toLocaleString("ru"),
},
{
accessor: "actions",