From 559a0e003389ca93f2e412b698c8cd6f028622b2 Mon Sep 17 00:00:00 2001 From: vamsikrishnamathala Date: Fri, 19 Dec 2025 16:46:59 +0530 Subject: [PATCH 1/2] fix: inbox spacing issue --- .../inbox/content/issue-properties.tsx | 3 +- .../components/inbox/content/issue-root.tsx | 40 +++++++++++-------- .../core/components/inbox/content/root.tsx | 3 +- .../components/issues/attachment/root.tsx | 5 +-- .../issue-detail/label/label-list-item.tsx | 25 +++--------- 5 files changed, 32 insertions(+), 44 deletions(-) diff --git a/apps/web/core/components/inbox/content/issue-properties.tsx b/apps/web/core/components/inbox/content/issue-properties.tsx index 807d9e235aa..c9d1419777a 100644 --- a/apps/web/core/components/inbox/content/issue-properties.tsx +++ b/apps/web/core/components/inbox/content/issue-properties.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { observer } from "mobx-react"; import { StatePropertyIcon, @@ -58,7 +57,7 @@ export const InboxIssueContentProperties = observer(function InboxIssueContentPr return (
-
Properties
+
Properties
{/* Intake State */} diff --git a/apps/web/core/components/inbox/content/issue-root.tsx b/apps/web/core/components/inbox/content/issue-root.tsx index c93df6f0fb5..3c7b3c75dce 100644 --- a/apps/web/core/components/inbox/content/issue-root.tsx +++ b/apps/web/core/components/inbox/content/issue-root.tsx @@ -166,7 +166,7 @@ export const InboxIssueMainContent = observer(function InboxIssueMainContent(pro return ( <> -
+
{duplicateIssues.length > 0 && (
- +
+ +
- +
+ +
- +
+ +
); }); diff --git a/apps/web/core/components/inbox/content/root.tsx b/apps/web/core/components/inbox/content/root.tsx index d363ca165c3..f330f64689d 100644 --- a/apps/web/core/components/inbox/content/root.tsx +++ b/apps/web/core/components/inbox/content/root.tsx @@ -1,4 +1,3 @@ -import type { FC } from "react"; import { useEffect, useState } from "react"; import { observer } from "mobx-react"; import useSWR from "swr"; @@ -94,7 +93,7 @@ export const InboxContentRoot = observer(function InboxContentRoot(props: TInbox embedRemoveCurrentNotification={embedRemoveCurrentNotification} />
- + -

Attachments

+
+

Attachments

; return ( - + {label.name} + {!disabled && } + ); }); From 551c253bff25f870527a8b66061e16ce845abc2f Mon Sep 17 00:00:00 2001 From: vamsikrishnamathala Date: Fri, 19 Dec 2025 18:56:17 +0530 Subject: [PATCH 2/2] fix: lint --- .../components/issues/issue-detail/label/label-list-item.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/core/components/issues/issue-detail/label/label-list-item.tsx b/apps/web/core/components/issues/issue-detail/label/label-list-item.tsx index cd813cb1c5f..0d2bdbc9bbd 100644 --- a/apps/web/core/components/issues/issue-detail/label/label-list-item.tsx +++ b/apps/web/core/components/issues/issue-detail/label/label-list-item.tsx @@ -4,7 +4,6 @@ import { CloseIcon, LabelFilledIcon } from "@plane/propel/icons"; // types import { useLabel } from "@/hooks/store/use-label"; import type { TLabelOperations } from "./root"; -import { Button } from "@plane/propel/button"; type TLabelListItem = { workspaceSlug: string;