From 301a9acec0c360c334bb4ee955cc8eccae7714e9 Mon Sep 17 00:00:00 2001 From: Gib Date: Wed, 18 Jun 2025 16:56:35 -0500 Subject: [PATCH] Fix history title --- src/components/status/HistoryDrawer.tsx | 2 +- src/components/status/Table.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/status/HistoryDrawer.tsx b/src/components/status/HistoryDrawer.tsx index 6c28a19..6d80d27 100644 --- a/src/components/status/HistoryDrawer.tsx +++ b/src/components/status/HistoryDrawer.tsx @@ -106,7 +106,7 @@ export const HistoryDrawer: React.FC = ({ className='w-8 h-8 md:w-12 md:h-12' />

- {user && user.id !== '' ? 'User History' : 'All History'} + {user && user.id !== '' ? `${user.full_name}'s History` : 'All History'}

{totalCount > 0 && ( diff --git a/src/components/status/Table.tsx b/src/components/status/Table.tsx index 2b72662..96d5cbd 100644 --- a/src/components/status/Table.tsx +++ b/src/components/status/Table.tsx @@ -139,9 +139,9 @@ export const TechTable = ({ initialStatuses = [] }: TableProps) => { }); const thClassName = makeConditionalClassName({ context: tvMode, - defaultClassName: 'py-4 px-4 border font-semibold xl:min-w-[420px]', - on: 'lg:text-6xl', - off: 'lg:text-5xl', + defaultClassName: 'py-4 px-4 border font-semibold ', + on: 'lg:text-6xl xl:min-w-[420px]', + off: 'lg:text-5xl xl:min-w-[300px]', }); const tdClassName = makeConditionalClassName({ context: tvMode,