Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,15 @@ const McpSidebarGroup = ({
return (
<SidebarGroup className={`p-3${!hasMcpServers ? " h-full" : ""}`}>
{hasMcpServers && (
<>
<SidebarGroupLabel className="cursor-default">
MCP Servers
</SidebarGroupLabel>
<SidebarGroupLabel className="cursor-default w-full flex items-center justify-between">
<span>MCP Servers</span>
{showSearchConfigTrigger && (
<SearchConfigTrigger
showConfig={showConfig}
setShowConfig={setShowConfig}
/>
)}
</>
</SidebarGroupLabel>
)}
<SidebarGroupContent className="h-full">
<SidebarMenu className={!hasMcpServers ? " h-full" : ""}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,6 @@ export function FlowSidebarComponent({ isLoading }: FlowSidebarComponentProps) {
}
}, [finalFilteredData, search, filterType, getFilterEdge]);

// Update dataFilter when baseData changes
useEffect(() => {
setFilterData(baseData);
}, [baseData]);

useEffect(() => {
const options = {
keys: [
Expand Down
Loading