mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 17:16:52 +08:00
### What problem does this PR solve? Feat: Display the data flow log on the far right. #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -122,7 +122,11 @@ export function EditMcpDialog({
|
||||
setFieldChanged={setFieldChanged}
|
||||
></EditMcpForm>
|
||||
<Collapse
|
||||
title={<div>{nextTools?.length || 0} tools available</div>}
|
||||
title={
|
||||
<div>
|
||||
{nextTools?.length || 0} {t('mcp.toolsAvailable')}
|
||||
</div>
|
||||
}
|
||||
open={collapseOpen}
|
||||
onOpenChange={setCollapseOpen}
|
||||
rightContent={
|
||||
|
||||
@ -33,10 +33,10 @@ export default function McpServer() {
|
||||
|
||||
return (
|
||||
<section className="p-4 w-full">
|
||||
<div className="text-text-primary text-2xl">MCP Servers</div>
|
||||
<div className="text-text-primary text-2xl">{t('mcp.mcpServers')}</div>
|
||||
<section className="flex items-center justify-between pb-5">
|
||||
<div className="text-text-secondary">
|
||||
Customize the list of MCP servers
|
||||
{t('mcp.customizeTheListOfMcpServers')}
|
||||
</div>
|
||||
<div className="flex gap-5">
|
||||
<SearchInput
|
||||
|
||||
Reference in New Issue
Block a user