Commit 78d27728 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

fix(应用配置页): 关联知识库搜索值置空

See merge request !192
parents 8358963f cfb3960c
...@@ -89,7 +89,10 @@ const emptyKnowledgeListText = computed(() => { ...@@ -89,7 +89,10 @@ const emptyKnowledgeListText = computed(() => {
watch( watch(
() => props.isShowModal, () => props.isShowModal,
(newVal) => { (newVal) => {
newVal && handleGetKnowledgeList() if (newVal) {
searchKnowledgeInputValue.value = ''
handleGetKnowledgeList()
}
}, },
) )
......
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