diff --git a/ui/src/components/layout-container/index.vue b/ui/src/components/layout-container/index.vue index e8f145a2b..644ea6cac 100644 --- a/ui/src/components/layout-container/index.vue +++ b/ui/src/components/layout-container/index.vue @@ -42,15 +42,19 @@ const props = defineProps({ resizable: Boolean, minLeftWidth: { type: Number, - default: 260, + default: 280, }, maxLeftWidth: { type: Number, default: 400, }, + isCollapse: { + type: Boolean, + default: false, + }, }) -const isCollapse = ref(true) +const isCollapse = ref(props.isCollapse) const leftWidth = ref(props.minLeftWidth) const isResizing = ref(false) diff --git a/ui/src/views/application/index.vue b/ui/src/views/application/index.vue index 28b3e92f0..222517d08 100644 --- a/ui/src/views/application/index.vue +++ b/ui/src/views/application/index.vue @@ -1,5 +1,5 @@