From f3711f3789130349f811576756b41a7149e6ea77 Mon Sep 17 00:00:00 2001 From: Donkie Date: Mon, 5 Aug 2024 19:26:35 +0200 Subject: [PATCH] Formatting --- client/src/pages/filaments/list.tsx | 2 +- client/src/pages/spools/list.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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,