From ec22f1fc53934de34e3091e468088d707ed2bcaf Mon Sep 17 00:00:00 2001 From: Akshita Goyal <36129505+gakshita@users.noreply.github.com> Date: Fri, 4 Oct 2024 14:11:26 +0530 Subject: [PATCH 1/3] fix: cycles build issue (#5750) --- web/core/components/cycles/list/root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/components/cycles/list/root.tsx b/web/core/components/cycles/list/root.tsx index 25a02fc6a9..1531b88aa8 100644 --- a/web/core/components/cycles/list/root.tsx +++ b/web/core/components/cycles/list/root.tsx @@ -28,7 +28,7 @@ export const CyclesList: FC = observer((props) => { ) : ( <> - + {upcomingCycleIds && ( From 51b01ebcac92964f39e0221c678255354c753c4d Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Fri, 4 Oct 2024 17:31:09 +0530 Subject: [PATCH 2/3] [WEB-2580] chore: improvements for custom search select. (#5744) * [WEB-2580] chore: improvements for custom search select. * chore: update optionTooltip prop. * chore: update option tooltip prop. * chore: minor updates. --- .../ui/src/dropdowns/custom-search-select.tsx | 28 +++++++++++++++---- packages/ui/src/dropdowns/helper.tsx | 14 ++++++---- .../issues/issue-modal/issue-type-select.tsx | 21 ++++++++++---- .../components/issues/issue-modal/form.tsx | 1 + 4 files changed, 47 insertions(+), 17 deletions(-) diff --git a/packages/ui/src/dropdowns/custom-search-select.tsx b/packages/ui/src/dropdowns/custom-search-select.tsx index 81d33df6ea..7842f1531d 100644 --- a/packages/ui/src/dropdowns/custom-search-select.tsx +++ b/packages/ui/src/dropdowns/custom-search-select.tsx @@ -1,7 +1,7 @@ import React, { useRef, useState } from "react"; import { usePopper } from "react-popper"; import { Combobox } from "@headlessui/react"; -import { Check, ChevronDown, Search } from "lucide-react"; +import { Check, ChevronDown, Info, Search } from "lucide-react"; import { createPortal } from "react-dom"; // plane helpers import { useOutsideClickDetector } from "@plane/helpers"; @@ -11,6 +11,8 @@ import { useDropdownKeyDown } from "../hooks/use-dropdown-key-down"; import { cn } from "../../helpers"; // types import { ICustomSearchSelectProps } from "./helper"; +// local components +import { Tooltip } from "../tooltip"; export const CustomSearchSelect = (props: ICustomSearchSelectProps) => { const { @@ -95,11 +97,10 @@ export const CustomSearchSelect = (props: ICustomSearchSelectProps) => {