Skip to content

Commit

Permalink
fix: Opening statement shortcuts can only handle one issue (#2186)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaohuzhang1 authored Feb 10, 2025
1 parent f16f417 commit d4fbf09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit d4fbf09

Please sign in to comment.