Skip to content

Commit d4fbf09

Browse files
authored
fix: Opening statement shortcuts can only handle one issue (#2186)
1 parent f16f417 commit d4fbf09

File tree

1 file changed

+1
-1
lines changed
  • ui/src/components/ai-chat/component/prologue-content

1 file changed

+1
-1
lines changed

ui/src/components/ai-chat/component/prologue-content/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const prologue = computed(() => {
4747
let result = temp
4848
for (const index in quick_question_list) {
4949
const quick_question = quick_question_list[index]
50-
result = temp.replace(quick_question, toQuickQuestion)
50+
result = result.replace(quick_question, toQuickQuestion)
5151
}
5252
return result
5353
}

0 commit comments

Comments
 (0)