Skip to content

Commit f95a619

Browse files
committed
fix: update LayoutContainer to conditionally show left panel based on apiType
1 parent 5470fc7 commit f95a619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/views/application/component/ToolDialog.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
</div>
2323
</template>
2424
<!-- 共享的知识库工作流中,只能查共享的工具,这里不需要展示左边的树,只需展示右边的内容 -->
25-
<LayoutContainer class="application-manage">
26-
<template #left v-if="apiType !== 'systemShare'">
25+
<LayoutContainer class="application-manage" :show-left="apiType !== 'systemShare'">
26+
<template #left>
2727
<folder-tree
2828
:data="folderList"
2929
:currentNodeKey="currentFolder?.id"

0 commit comments

Comments
 (0)