From 3d53a5c42f3d410499221be1774a06dd6acf1eca Mon Sep 17 00:00:00 2001 From: backuppc Date: Wed, 3 Dec 2025 08:24:56 +0900 Subject: [PATCH] Simplify patch edit layout: hide header, compact category+title in one row --- Project/frontend/src/pages/PatchList.tsx | 31 ++++++++---------------- 1 file changed, 10 insertions(+), 21 deletions(-) diff --git a/Project/frontend/src/pages/PatchList.tsx b/Project/frontend/src/pages/PatchList.tsx index 6b970d8..b7505a8 100644 --- a/Project/frontend/src/pages/PatchList.tsx +++ b/Project/frontend/src/pages/PatchList.tsx @@ -370,42 +370,31 @@ export function PatchList() {
-
-
- +
+
+
-
- +
+ setEditFormData({ ...editFormData, header: e.target.value })} - className="w-full h-10 bg-white/10 border border-white/30 rounded-lg px-3 text-white placeholder-white/50 focus:outline-none focus:ring-2 focus:ring-primary-400" - placeholder="예: v2.0.0" + value={editFormData.title || ''} + onChange={(e) => setEditFormData({ ...editFormData, title: e.target.value })} + className="w-full h-9 bg-white/10 border border-white/30 rounded-lg px-3 text-white placeholder-white/50 focus:outline-none focus:ring-2 focus:ring-primary-400" + placeholder="패치 제목" />
-
- - setEditFormData({ ...editFormData, title: e.target.value })} - className="w-full h-10 bg-white/10 border border-white/30 rounded-lg px-3 text-white placeholder-white/50 focus:outline-none focus:ring-2 focus:ring-primary-400" - placeholder="패치 제목" - /> -
-