From fb43f44f118db0679b2fcc325eebada764519529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 11:31:47 +0200 Subject: [PATCH 01/10] Fix issues with sidenav layout in mobile view --- dashboard/final-example/app/ui/dashboard/sidenav.tsx | 5 +++-- dashboard/starter-example/app/ui/dashboard/sidenav.tsx | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/dashboard/final-example/app/ui/dashboard/sidenav.tsx b/dashboard/final-example/app/ui/dashboard/sidenav.tsx index 02a572a0..b8f10a7a 100644 --- a/dashboard/final-example/app/ui/dashboard/sidenav.tsx +++ b/dashboard/final-example/app/ui/dashboard/sidenav.tsx @@ -11,7 +11,7 @@ export default function SideNav() { className="mb-2 flex h-20 items-end justify-start rounded-md bg-blue-600 p-4 md:h-40" href="/" > -
+
@@ -23,8 +23,9 @@ export default function SideNav() { 'use server'; await signOut({ redirectTo: '/' }); }} + className="grow md:flex-none" > - diff --git a/dashboard/starter-example/app/ui/dashboard/sidenav.tsx b/dashboard/starter-example/app/ui/dashboard/sidenav.tsx index 3d55b46e..9fd7bfd6 100644 --- a/dashboard/starter-example/app/ui/dashboard/sidenav.tsx +++ b/dashboard/starter-example/app/ui/dashboard/sidenav.tsx @@ -10,15 +10,15 @@ export default function SideNav() { className="mb-2 flex h-20 items-end justify-start rounded-md bg-blue-600 p-4 md:h-40" href="/" > -
+
-
- From 7b12a49c8565852413fe61069e47c1c6a1f46c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 11:32:29 +0200 Subject: [PATCH 02/10] Fix inconsistent header padding in invoice table --- dashboard/final-example/app/ui/invoices/table.tsx | 2 +- dashboard/final-example/app/ui/skeletons.tsx | 2 +- dashboard/starter-example/app/ui/invoices/table.tsx | 2 +- dashboard/starter-example/app/ui/skeletons.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/final-example/app/ui/invoices/table.tsx b/dashboard/final-example/app/ui/invoices/table.tsx index 0255185d..db30e86b 100644 --- a/dashboard/final-example/app/ui/invoices/table.tsx +++ b/dashboard/final-example/app/ui/invoices/table.tsx @@ -57,7 +57,7 @@ export default async function InvoicesTable({ -
+ Customer diff --git a/dashboard/final-example/app/ui/skeletons.tsx b/dashboard/final-example/app/ui/skeletons.tsx index 74816c4f..60f8a6ad 100644 --- a/dashboard/final-example/app/ui/skeletons.tsx +++ b/dashboard/final-example/app/ui/skeletons.tsx @@ -179,7 +179,7 @@ export function InvoicesTableSkeleton() { -
+ Customer diff --git a/dashboard/starter-example/app/ui/invoices/table.tsx b/dashboard/starter-example/app/ui/invoices/table.tsx index 0255185d..db30e86b 100644 --- a/dashboard/starter-example/app/ui/invoices/table.tsx +++ b/dashboard/starter-example/app/ui/invoices/table.tsx @@ -57,7 +57,7 @@ export default async function InvoicesTable({ -
+ Customer diff --git a/dashboard/starter-example/app/ui/skeletons.tsx b/dashboard/starter-example/app/ui/skeletons.tsx index 74816c4f..60f8a6ad 100644 --- a/dashboard/starter-example/app/ui/skeletons.tsx +++ b/dashboard/starter-example/app/ui/skeletons.tsx @@ -179,7 +179,7 @@ export function InvoicesTableSkeleton() { - in invoice tables: no default fw
+ Customer From 0c677f84d5d45eaf3f2f7cf0776da2a85e1a3735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 11:50:26 +0200 Subject: [PATCH 03/10] Fix acme logo on login page in mobile view --- dashboard/final-example/app/login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/final-example/app/login/page.tsx b/dashboard/final-example/app/login/page.tsx index 87c28e05..2f002cf2 100644 --- a/dashboard/final-example/app/login/page.tsx +++ b/dashboard/final-example/app/login/page.tsx @@ -7,7 +7,7 @@ export default function LoginPage() {
-
+
From e28628aea9bd105027f2131bc4387bad080bca38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 11:51:53 +0200 Subject: [PATCH 04/10] Actually disable login button while pending --- dashboard/final-example/app/ui/login-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/final-example/app/ui/login-form.tsx b/dashboard/final-example/app/ui/login-form.tsx index c5b9fe9d..c014f8ce 100644 --- a/dashboard/final-example/app/ui/login-form.tsx +++ b/dashboard/final-example/app/ui/login-form.tsx @@ -68,7 +68,7 @@ export default function LoginForm() {
-
Date: Thu, 18 Sep 2025 11:54:12 +0200 Subject: [PATCH 05/10] Add missing id to search input --- dashboard/final-example/app/ui/search.tsx | 1 + dashboard/starter-example/app/ui/search.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/dashboard/final-example/app/ui/search.tsx b/dashboard/final-example/app/ui/search.tsx index dea4b516..96bad717 100644 --- a/dashboard/final-example/app/ui/search.tsx +++ b/dashboard/final-example/app/ui/search.tsx @@ -30,6 +30,7 @@ export default function Search({ placeholder }: { placeholder: string }) { Search { diff --git a/dashboard/starter-example/app/ui/search.tsx b/dashboard/starter-example/app/ui/search.tsx index e6e93917..a73cbd70 100644 --- a/dashboard/starter-example/app/ui/search.tsx +++ b/dashboard/starter-example/app/ui/search.tsx @@ -9,6 +9,7 @@ export default function Search({ placeholder }: { placeholder: string }) { Search From 1a38a510dcdb0a2be74a53e7bb45952a2469dbc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 12:04:14 +0200 Subject: [PATCH 06/10] Add intended peer focus color to customer select icon in invoice forms --- dashboard/final-example/app/ui/invoices/create-form.tsx | 2 +- dashboard/final-example/app/ui/invoices/edit-form.tsx | 2 +- dashboard/starter-example/app/ui/invoices/create-form.tsx | 2 +- dashboard/starter-example/app/ui/invoices/edit-form.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/final-example/app/ui/invoices/create-form.tsx b/dashboard/final-example/app/ui/invoices/create-form.tsx index e3cdc478..6c94a39f 100644 --- a/dashboard/final-example/app/ui/invoices/create-form.tsx +++ b/dashboard/final-example/app/ui/invoices/create-form.tsx @@ -41,7 +41,7 @@ export default function Form({ customers }: { customers: CustomerField[] }) { ))} - +
diff --git a/dashboard/final-example/app/ui/invoices/edit-form.tsx b/dashboard/final-example/app/ui/invoices/edit-form.tsx index 5aa4ece5..7a9b6960 100644 --- a/dashboard/final-example/app/ui/invoices/edit-form.tsx +++ b/dashboard/final-example/app/ui/invoices/edit-form.tsx @@ -48,7 +48,7 @@ export default function EditInvoiceForm({ ))} - +
diff --git a/dashboard/starter-example/app/ui/invoices/create-form.tsx b/dashboard/starter-example/app/ui/invoices/create-form.tsx index 35099cef..e2d4d9b1 100644 --- a/dashboard/starter-example/app/ui/invoices/create-form.tsx +++ b/dashboard/starter-example/app/ui/invoices/create-form.tsx @@ -33,7 +33,7 @@ export default function Form({ customers }: { customers: CustomerField[] }) { ))} - +
diff --git a/dashboard/starter-example/app/ui/invoices/edit-form.tsx b/dashboard/starter-example/app/ui/invoices/edit-form.tsx index 8673667d..f232c48a 100644 --- a/dashboard/starter-example/app/ui/invoices/edit-form.tsx +++ b/dashboard/starter-example/app/ui/invoices/edit-form.tsx @@ -41,7 +41,7 @@ export default function EditInvoiceForm({ ))} - + From cdc923738d98dcf22cba395ad79cd93fb6d201ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 12:09:38 +0200 Subject: [PATCH 07/10] Remove ineffective font-normal from
default fw -> no inheritance --- dashboard/final-example/app/ui/invoices/table.tsx | 2 +- dashboard/final-example/app/ui/skeletons.tsx | 2 +- dashboard/starter-example/app/ui/invoices/table.tsx | 2 +- dashboard/starter-example/app/ui/skeletons.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/final-example/app/ui/invoices/table.tsx b/dashboard/final-example/app/ui/invoices/table.tsx index db30e86b..259e69f8 100644 --- a/dashboard/final-example/app/ui/invoices/table.tsx +++ b/dashboard/final-example/app/ui/invoices/table.tsx @@ -55,7 +55,7 @@ export default async function InvoicesTable({ ))} - +
Customer diff --git a/dashboard/final-example/app/ui/skeletons.tsx b/dashboard/final-example/app/ui/skeletons.tsx index 60f8a6ad..21e3767b 100644 --- a/dashboard/final-example/app/ui/skeletons.tsx +++ b/dashboard/final-example/app/ui/skeletons.tsx @@ -177,7 +177,7 @@ export function InvoicesTableSkeleton() { - +
Customer diff --git a/dashboard/starter-example/app/ui/invoices/table.tsx b/dashboard/starter-example/app/ui/invoices/table.tsx index db30e86b..259e69f8 100644 --- a/dashboard/starter-example/app/ui/invoices/table.tsx +++ b/dashboard/starter-example/app/ui/invoices/table.tsx @@ -55,7 +55,7 @@ export default async function InvoicesTable({ ))} - +
Customer diff --git a/dashboard/starter-example/app/ui/skeletons.tsx b/dashboard/starter-example/app/ui/skeletons.tsx index 60f8a6ad..21e3767b 100644 --- a/dashboard/starter-example/app/ui/skeletons.tsx +++ b/dashboard/starter-example/app/ui/skeletons.tsx @@ -177,7 +177,7 @@ export function InvoicesTableSkeleton() { - +
Customer From 7a87c507e7fbaac9e26d9e4a95fd19cf62772175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 12:12:29 +0200 Subject: [PATCH 08/10] Remove unnecessary utilities from login page --- dashboard/final-example/app/login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/final-example/app/login/page.tsx b/dashboard/final-example/app/login/page.tsx index 2f002cf2..802edb0a 100644 --- a/dashboard/final-example/app/login/page.tsx +++ b/dashboard/final-example/app/login/page.tsx @@ -5,7 +5,7 @@ import { Suspense } from 'react'; export default function LoginPage() { return (
-
+
From 3a17d9aaa525bc46b007a52aa2a68a03fcf85c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurek=20M=C3=BCller?= Date: Thu, 18 Sep 2025 12:16:57 +0200 Subject: [PATCH 09/10] Remove ineffective placeholder color from select in the invoice forms --- dashboard/final-example/app/ui/invoices/create-form.tsx | 2 +- dashboard/final-example/app/ui/invoices/edit-form.tsx | 2 +- dashboard/starter-example/app/ui/invoices/create-form.tsx | 2 +- dashboard/starter-example/app/ui/invoices/edit-form.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/final-example/app/ui/invoices/create-form.tsx b/dashboard/final-example/app/ui/invoices/create-form.tsx index 6c94a39f..5452937e 100644 --- a/dashboard/final-example/app/ui/invoices/create-form.tsx +++ b/dashboard/final-example/app/ui/invoices/create-form.tsx @@ -28,7 +28,7 @@ export default function Form({ customers }: { customers: CustomerField[] }) { diff --git a/dashboard/starter-example/app/ui/invoices/create-form.tsx b/dashboard/starter-example/app/ui/invoices/create-form.tsx index e2d4d9b1..90982e11 100644 --- a/dashboard/starter-example/app/ui/invoices/create-form.tsx +++ b/dashboard/starter-example/app/ui/invoices/create-form.tsx @@ -21,7 +21,7 @@ export default function Form({ customers }: { customers: CustomerField[] }) {