diff --git a/src/frontend/src/CustomNodes/GenericNode/components/NodeInputField/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/NodeInputField/index.tsx index 35e6c6473..d44ae9cc7 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/NodeInputField/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/NodeInputField/index.tsx @@ -129,6 +129,7 @@ export default function NodeInputField({ {getCustomParameterTitle({ title, + nodeId: data.id, isFlexView, })} @@ -141,6 +142,7 @@ export default function NodeInputField({ {getCustomParameterTitle({ title, + nodeId: data.id, isFlexView, })} diff --git a/src/frontend/src/components/flowToolbarComponent/index.tsx b/src/frontend/src/components/flowToolbarComponent/index.tsx index cc2ece25d..0784f5e98 100644 --- a/src/frontend/src/components/flowToolbarComponent/index.tsx +++ b/src/frontend/src/components/flowToolbarComponent/index.tsx @@ -1,5 +1,8 @@ import ShadTooltip from "@/components/shadTooltipComponent"; -import { ENABLE_API } from "@/customization/feature-flags"; +import { + ENABLE_API, + ENABLE_LANGFLOW_STORE, +} from "@/customization/feature-flags"; import { track } from "@/customization/utils/analytics"; import IOModal from "@/modals/IOModal/newModal"; import { useEffect, useMemo, useState } from "react"; @@ -180,17 +183,19 @@ export default function FlowToolbar(): JSX.Element { )} -
-
- {ModalMemo} + {ENABLE_LANGFLOW_STORE && ( +
+
+ {ModalMemo} +
-
+ )}
diff --git a/src/frontend/src/components/ui/popover.tsx b/src/frontend/src/components/ui/popover.tsx index 380ab7c5b..1a71de7e0 100644 --- a/src/frontend/src/components/ui/popover.tsx +++ b/src/frontend/src/components/ui/popover.tsx @@ -6,6 +6,8 @@ import { cn } from "../../utils/utils"; const Popover = PopoverPrimitive.Root; +const PopoverAnchor = PopoverPrimitive.Anchor; + const PopoverTrigger = PopoverPrimitive.Trigger; const PopoverContent = React.forwardRef< @@ -44,4 +46,10 @@ const PopoverContentWithoutPortal = React.forwardRef< )); PopoverContentWithoutPortal.displayName = PopoverPrimitive.Content.displayName; -export { Popover, PopoverContent, PopoverContentWithoutPortal, PopoverTrigger }; +export { + Popover, + PopoverAnchor, + PopoverContent, + PopoverContentWithoutPortal, + PopoverTrigger, +}; diff --git a/src/frontend/src/components/ui/sidebar.tsx b/src/frontend/src/components/ui/sidebar.tsx index bae3f9a51..f71d3f0e4 100644 --- a/src/frontend/src/components/ui/sidebar.tsx +++ b/src/frontend/src/components/ui/sidebar.tsx @@ -213,7 +213,7 @@ const Sidebar = React.forwardRef< />