fix: Opening statement shortcuts can only handle one issue (#2186)

This commit is contained in:
shaohuzhang1 2025-02-10 10:24:43 +08:00 committed by GitHub
parent f16f417bd5
commit d4fbf0997a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ const prologue = computed(() => {
let result = temp
for (const index in quick_question_list) {
const quick_question = quick_question_list[index]
result = temp.replace(quick_question, toQuickQuestion)
result = result.replace(quick_question, toQuickQuestion)
}
return result
}