From 7732403a0d9e33e10803bb9c22b2c53b73fb394b Mon Sep 17 00:00:00 2001 From: backuppc Date: Tue, 2 Dec 2025 17:27:38 +0900 Subject: [PATCH] Improve patch list layout: lightskyblue title, single line with truncate, date only --- Project/frontend/src/pages/PatchList.tsx | 45 ++++++++++-------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/Project/frontend/src/pages/PatchList.tsx b/Project/frontend/src/pages/PatchList.tsx index 302728c..fe24dfb 100644 --- a/Project/frontend/src/pages/PatchList.tsx +++ b/Project/frontend/src/pages/PatchList.tsx @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import { FileText, Search, RefreshCw, Calendar, User, Edit3 } from 'lucide-react'; +import { FileText, Search, RefreshCw, Calendar, Edit3, User } from 'lucide-react'; import { comms } from '@/communication'; import { BoardItem } from '@/types'; @@ -168,35 +168,26 @@ export function PatchList() { boardList.map((item) => (
handleRowClick(item)} > -
-
-
- {item.header && ( - - {item.header} - - )} - {item.cate && ( - - {item.cate} - - )} -
-

{item.title}

-

{item.contents}

+
+
+ {item.header && ( + + {item.header} + + )} + {item.cate && ( + + {item.cate} + + )}
-
-
- - {item.wuid_name || item.wuid} -
-
- - {formatDate(item.wdate)} -
+

{item.title}

+
+ + {formatDate(item.wdate)}