diff --git a/client/public/locales/en/common.json b/client/public/locales/en/common.json index e7eb1b6..88ff2ae 100644 --- a/client/public/locales/en/common.json +++ b/client/public/locales/en/common.json @@ -396,4 +396,4 @@ "no_location": "No Location", "no_locations_help": "This page lets you organize your spools in locations, add some spools to get started!" } -} \ No newline at end of file +} diff --git a/client/src/pages/locations/components/location.tsx b/client/src/pages/locations/components/location.tsx index a8b04ba..b52d297 100644 --- a/client/src/pages/locations/components/location.tsx +++ b/client/src/pages/locations/components/location.tsx @@ -9,6 +9,7 @@ import { ISpool } from "../../spools/model"; import { DragItem, ItemTypes, SpoolDragItem } from "../dnd"; import { EMPTYLOC } from "../functions"; import { SpoolList } from "./spoolList"; +import { useGetSetting } from "../../../utils/querySettings"; const { useToken } = theme; @@ -139,6 +140,9 @@ export function Location({ const titleStyle = { color: canEditTitle ? undefined : token.colorTextTertiary, }; + const spoolCountStyle = { + color: token.colorTextQuaternary, + }; return (