fix: Opening statement shortcuts can only handle one issue (#2186)
parent
f16f417bd5
commit
d4fbf0997a
|
|
@ -47,7 +47,7 @@ const prologue = computed(() => {
|
||||||
let result = temp
|
let result = temp
|
||||||
for (const index in quick_question_list) {
|
for (const index in quick_question_list) {
|
||||||
const quick_question = quick_question_list[index]
|
const quick_question = quick_question_list[index]
|
||||||
result = temp.replace(quick_question, toQuickQuestion)
|
result = result.replace(quick_question, toQuickQuestion)
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue