diff --git a/client/src/pages/filaments/list.tsx b/client/src/pages/filaments/list.tsx index a550087..636bc39 100644 --- a/client/src/pages/filaments/list.tsx +++ b/client/src/pages/filaments/list.tsx @@ -260,7 +260,7 @@ export const FilamentList: React.FC = () => { ...commonProps, id: "price", i18ncat: "filament", - align: 'right', + align: "right", width: 80, render: (_, obj: IFilamentCollapsed) => { return obj.price?.toLocaleString(undefined, { diff --git a/client/src/pages/spools/list.tsx b/client/src/pages/spools/list.tsx index 36f2eee..969dd4a 100644 --- a/client/src/pages/spools/list.tsx +++ b/client/src/pages/spools/list.tsx @@ -371,7 +371,7 @@ export const SpoolList: React.FC = () => { ...commonProps, id: "price", i18ncat: "spool", - align: 'right', + align: "right", width: 80, render: (_, obj: ISpoolCollapsed) => { return obj.price?.toLocaleString(undefined, { @@ -386,7 +386,7 @@ export const SpoolList: React.FC = () => { ...commonProps, id: "used_weight", i18ncat: "spool", - align: 'right', + align: "right", unit: "g", maxDecimals: 0, width: 110,