From e78dd4b1c0449f27e1bcc82a0452d1879e78a9c7 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:43:16 +0530 Subject: [PATCH 1/3] fix: app sidebar dropdown fix (#2751) --- web/components/workspace/sidebar-dropdown.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/components/workspace/sidebar-dropdown.tsx b/web/components/workspace/sidebar-dropdown.tsx index faa301eaa..dfa45d9bf 100644 --- a/web/components/workspace/sidebar-dropdown.tsx +++ b/web/components/workspace/sidebar-dropdown.tsx @@ -219,11 +219,12 @@ export const WorkspaceSidebarDropdown = observer(() => { { + router.push(link.href); + }} + className="flex w-full items-center cursor-pointer justify-start rounded px-2 py-1 text-sm text-custom-sidebar-text-200 hover:bg-custom-sidebar-background-80" > - - {link.name} - + {link.name} ))} From 733fed76ccd5a2d7d16a41126cad639ad72abf07 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:43:48 +0530 Subject: [PATCH 2/3] fix: cycle card title responsiveness added (#2752) --- web/components/cycles/cycles-board-card.tsx | 52 ++++++++++----------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/web/components/cycles/cycles-board-card.tsx b/web/components/cycles/cycles-board-card.tsx index b9398c4a7..7de04172f 100644 --- a/web/components/cycles/cycles-board-card.tsx +++ b/web/components/cycles/cycles-board-card.tsx @@ -152,34 +152,32 @@ export const CyclesBoardCard: FC = (props) => { -
-
-
- - +
+
+ + + + + {cycle.name} + +
+
+ {currentCycle && ( + + {currentCycle.value === "current" + ? `${findHowManyDaysLeft(cycle.end_date ?? new Date())} ${currentCycle.label}` + : `${currentCycle.label}`} - - {cycle.name} - -
-
- {currentCycle && ( - - {currentCycle.value === "current" - ? `${findHowManyDaysLeft(cycle.end_date ?? new Date())} ${currentCycle.label}` - : `${currentCycle.label}`} - - )} - -
+ )} +
From 00e61a8753b730901405c410cd5a25ad740b26dd Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:45:41 +0530 Subject: [PATCH 3/3] fix: peek overview comment ordering and comment icon alignment fix (#2753) --- web/components/issues/comment/comment-card.tsx | 2 +- web/components/issues/issue-peek-overview/activity/view.tsx | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/web/components/issues/comment/comment-card.tsx b/web/components/issues/comment/comment-card.tsx index 983bfbb71..577050572 100644 --- a/web/components/issues/comment/comment-card.tsx +++ b/web/components/issues/comment/comment-card.tsx @@ -140,7 +140,7 @@ export const CommentCard: React.FC = ({
{showAccessSpecifier && ( -
+
{comment.access === "INTERNAL" ? : }
)} diff --git a/web/components/issues/issue-peek-overview/activity/view.tsx b/web/components/issues/issue-peek-overview/activity/view.tsx index 97976ed8f..fec3a2a08 100644 --- a/web/components/issues/issue-peek-overview/activity/view.tsx +++ b/web/components/issues/issue-peek-overview/activity/view.tsx @@ -42,8 +42,6 @@ export const IssueComment: FC = (props) => {
Activity
- - = (props) => { issueCommentReactionCreate={issueCommentReactionCreate} issueCommentReactionRemove={issueCommentReactionRemove} /> +
);