From c3c6ef883001774aaefa9df8af2e37c55ff0c350 Mon Sep 17 00:00:00 2001 From: Lakhan Baheti <94619783+1akhanBaheti@users.noreply.github.com> Date: Tue, 12 Mar 2024 19:13:04 +0530 Subject: [PATCH] chore: removed module tooltip from peek-overview & issue detail (#3946) --- web/components/dropdowns/module/index.tsx | 7 +++++-- web/components/issues/issue-detail/module-select.tsx | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/web/components/dropdowns/module/index.tsx b/web/components/dropdowns/module/index.tsx index 882604712..629aeba0e 100644 --- a/web/components/dropdowns/module/index.tsx +++ b/web/components/dropdowns/module/index.tsx @@ -47,6 +47,7 @@ type ButtonContentProps = { onChange: (moduleIds: string[]) => void; placeholder: string; showCount: boolean; + showTooltip?: boolean; value: string | string[] | null; }; @@ -60,6 +61,7 @@ const ButtonContent: React.FC = (props) => { onChange, placeholder, showCount, + showTooltip = false, value, } = props; // store hooks @@ -90,12 +92,12 @@ const ButtonContent: React.FC = (props) => { > {!hideIcon && } {!hideText && ( - + {moduleDetails?.name} )} {!disabled && ( - +