We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9c7c0 commit fedf822Copy full SHA for fedf822
frontend/src/views/dashboard/editor/ChatChartSelection.vue
@@ -80,10 +80,6 @@ const currentChat = ref<ChatInfo>(new ChatInfo())
80
const chartInfoList = ref<Array<any>>([])
81
const emits = defineEmits(['addChatChart'])
82
83
-onMounted(() => {
84
- getChatList()
85
-})
86
-
87
function selectChange(value: boolean, viewInfo: any) {
88
if (value) {
89
// @ts-expect-error eslint-disable-next-line @typescript-eslint/ban-ts-comment
@@ -200,7 +196,10 @@ function getChatList() {
200
196
201
197
const dialogInit = () => {
202
198
dialogShow.value = true
199
+ currentChatId.value = undefined
203
state.curMultiplexingComponents = []
+ chartInfoList.value = []
+ getChatList()
204
}
205
206
const saveMultiplexing = () => {
0 commit comments