From 6589581908bc69555c6730ed51a5ce29df1be4d5 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 14 Mar 2026 22:21:31 -0500 Subject: [PATCH] compact --- .claude/worktrees/inspiring-leavitt | 1 + client/src/components/AppShell.tsx | 10 +-- .../src/modules/crm/CrmAttachmentsPanel.tsx | 16 ++-- .../src/modules/crm/CrmContactEntryForm.tsx | 6 +- client/src/modules/crm/CrmContactsPanel.tsx | 16 ++-- client/src/modules/crm/CrmDetailPage.tsx | 78 +++++++++---------- client/src/modules/crm/CrmFormPage.tsx | 14 ++-- client/src/modules/crm/CrmListPage.tsx | 18 ++--- client/src/modules/crm/CrmRecordForm.tsx | 20 ++--- .../src/modules/dashboard/DashboardPage.tsx | 12 +-- .../modules/inventory/InventoryDetailPage.tsx | 30 +++---- .../modules/inventory/InventoryFormPage.tsx | 54 ++++++------- .../modules/inventory/InventoryListPage.tsx | 14 ++-- .../modules/inventory/WarehouseDetailPage.tsx | 28 +++---- .../modules/inventory/WarehouseFormPage.tsx | 40 +++++----- .../src/modules/inventory/WarehousesPage.tsx | 6 +- client/src/modules/login/LoginPage.tsx | 12 +-- .../modules/settings/CompanySettingsPage.tsx | 18 ++--- 18 files changed, 197 insertions(+), 196 deletions(-) create mode 160000 .claude/worktrees/inspiring-leavitt diff --git a/.claude/worktrees/inspiring-leavitt b/.claude/worktrees/inspiring-leavitt new file mode 160000 index 0000000..2cf6bf8 --- /dev/null +++ b/.claude/worktrees/inspiring-leavitt @@ -0,0 +1 @@ +Subproject commit 2cf6bf858d4ccb02da48b086cef05632977c875b diff --git a/client/src/components/AppShell.tsx b/client/src/components/AppShell.tsx index 754a6c6..3d1bea7 100644 --- a/client/src/components/AppShell.tsx +++ b/client/src/components/AppShell.tsx @@ -18,11 +18,11 @@ export function AppShell() { return (
-
-
-
+

Operations Command

-

Foundation Console

+

Foundation Console

diff --git a/client/src/modules/crm/CrmAttachmentsPanel.tsx b/client/src/modules/crm/CrmAttachmentsPanel.tsx index a0552d5..7ad9a74 100644 --- a/client/src/modules/crm/CrmAttachmentsPanel.tsx +++ b/client/src/modules/crm/CrmAttachmentsPanel.tsx @@ -120,29 +120,29 @@ export function CrmAttachmentsPanel({ ownerType, ownerId, onAttachmentCountChang } return ( -
-
+
+

Attachments

-

Shared files

+

Shared files

Drawings, customer markups, vendor documents, and other reference files linked to this record.

{canWriteFiles ? ( -
-
{status}
+
{status}
{!canReadFiles ? ( -
+
You do not have permission to view file attachments.
) : attachments.length === 0 ? ( -
+
No attachments have been added to this record yet.
) : ( @@ -150,7 +150,7 @@ export function CrmAttachmentsPanel({ ownerType, ownerId, onAttachmentCountChang {attachments.map((attachment) => (

{attachment.originalName}

diff --git a/client/src/modules/crm/CrmContactEntryForm.tsx b/client/src/modules/crm/CrmContactEntryForm.tsx index aa72776..b67cadc 100644 --- a/client/src/modules/crm/CrmContactEntryForm.tsx +++ b/client/src/modules/crm/CrmContactEntryForm.tsx @@ -13,7 +13,7 @@ interface CrmContactEntryFormProps { export function CrmContactEntryForm({ form, isSaving, status, onChange, onSubmit }: CrmContactEntryFormProps) { return (
-
+
-