From f474d100374e672d13f5806d04563825eac2a3dc Mon Sep 17 00:00:00 2001 From: lixuan Date: Wed, 13 Aug 2025 00:17:45 -0700 Subject: [PATCH 1/7] feat: Modify some version issues --- packages/plugins/help/src/HelpIcon.vue | 4 +++- packages/plugins/robot/src/Main.vue | 3 +++ packages/plugins/robot/src/mcp/McpServer.vue | 25 ++++++++++++++++++-- packages/plugins/robot/src/mcp/useMcp.ts | 2 +- 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/packages/plugins/help/src/HelpIcon.vue b/packages/plugins/help/src/HelpIcon.vue index 1e78ae5355..e6e43b695c 100644 --- a/packages/plugins/help/src/HelpIcon.vue +++ b/packages/plugins/help/src/HelpIcon.vue @@ -106,7 +106,9 @@ export default { const toShowStep = () => { if (!tinyGuideRef.value?.state?.tour?.isActive()) { - state.showStep = !state.showStep + setTimeout(() => { + state.showStep = !state.showStep + }, 1000) state.helpBox = false } } diff --git a/packages/plugins/robot/src/Main.vue b/packages/plugins/robot/src/Main.vue index fb9326ccf2..e2981a67d0 100644 --- a/packages/plugins/robot/src/Main.vue +++ b/packages/plugins/robot/src/Main.vue @@ -472,6 +472,9 @@ export default { &.tr-container.tr-container { top: var(--base-top-panel-height); --tr-container-width: 400px; + .tr-container__dragging-bar { + display: none; + } } :deep(button.icon-btn) { diff --git a/packages/plugins/robot/src/mcp/McpServer.vue b/packages/plugins/robot/src/mcp/McpServer.vue index 28d403a041..79565beb41 100644 --- a/packages/plugins/robot/src/mcp/McpServer.vue +++ b/packages/plugins/robot/src/mcp/McpServer.vue @@ -10,11 +10,13 @@ :popup-config="drawerConfig" v-model:visible="visible" v-model:activeCount="activeCount" - :installed-plugins="installedPlugins" + :installed-plugins="showInstalledPlugins" :market-plugins="marketPlugins" :market-category-options="[]" :loading="loading" :market-loading="marketLoading" + :show-market-tab="false" + @search="handleSearch" @plugin-expand="handlePluginExpand" @plugin-add="updateMcpServerStatus" @plugin-toggle="handlePluginToggle" @@ -23,7 +25,7 @@ -