Commit 92997eb3 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

fix: 应用配置记忆片段开启按钮无效

See merge request !78
parents ba950594 4bd44bb5
...@@ -71,6 +71,7 @@ function handleDeleteMemoryVariableItem(memoryVariable: object) { ...@@ -71,6 +71,7 @@ function handleDeleteMemoryVariableItem(memoryVariable: object) {
} }
function handleChangeMemoryFragmentState(value: boolean) { function handleChangeMemoryFragmentState(value: boolean) {
isLongMemory.value = value ? 'Y' : 'N'
isOpenLongMemory.value = value isOpenLongMemory.value = value
} }
</script> </script>
...@@ -128,7 +129,7 @@ function handleChangeMemoryFragmentState(value: boolean) { ...@@ -128,7 +129,7 @@ function handleChangeMemoryFragmentState(value: boolean) {
}} }}
</div> </div>
<div <div
v-show="variableStructure !== null" v-show="variableStructure?.length && variableStructure !== null"
class="mt-4 flex flex-1 flex-wrap items-center gap-[12px] overflow-hidden" class="mt-4 flex flex-1 flex-wrap items-center gap-[12px] overflow-hidden"
> >
<div <div
...@@ -190,7 +191,6 @@ function handleChangeMemoryFragmentState(value: boolean) { ...@@ -190,7 +191,6 @@ function handleChangeMemoryFragmentState(value: boolean) {
</n-popover> </n-popover>
</div> </div>
</div> </div>
<div class="flex flex-1 flex-wrap items-center gap-[12px] overflow-hidden"></div>
</NCollapseItem> </NCollapseItem>
<NCollapseItem name="memoryFragment" class="my-[13px]!"> <NCollapseItem name="memoryFragment" class="my-[13px]!">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment