diff --git a/frontend/components/Area/AreaModal.tsx b/frontend/components/Area/AreaModal.tsx index d4a398b..b22c895 100644 --- a/frontend/components/Area/AreaModal.tsx +++ b/frontend/components/Area/AreaModal.tsx @@ -164,7 +164,7 @@ const AreaModal: React.FC = ({ >
{/* Main Form Section */} -
+
= ({ >
{/* Area Title Section - Always Visible */} -
+
= ({
{/* Action Buttons - Below border with custom layout */} -
+
{/* Left side: Delete and Cancel */}
{area && diff --git a/frontend/components/Inbox/InboxItemDetail.tsx b/frontend/components/Inbox/InboxItemDetail.tsx index 9f54cad..4a87a79 100644 --- a/frontend/components/Inbox/InboxItemDetail.tsx +++ b/frontend/components/Inbox/InboxItemDetail.tsx @@ -20,7 +20,7 @@ interface InboxItemDetailProps { item: InboxItem; onProcess: (id: number) => void; onDelete: (id: number) => void; - onUpdate?: (id: number, content: string) => Promise; + onUpdate?: (id: number) => Promise; openTaskModal: (task: Task, inboxItemId?: number) => void; openProjectModal: (project: Project | null, inboxItemId?: number) => void; openNoteModal: (note: Note | null, inboxItemId?: number) => void; @@ -401,9 +401,16 @@ const InboxItemDetail: React.FC = ({ >
-

+ {/* Tags and Projects display - TaskHeader style */} {(hashtags.length > 0 || projectRefs.length > 0) && ( @@ -498,7 +505,7 @@ const InboxItemDetail: React.FC = ({