Skip to content

Commit 2762c8f

Browse files
committed
Fix repalce all
1 parent 3b2a52c commit 2762c8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/pages/search-messages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ export default Vue.extend({
447447
},
448448
449449
sanitizeContent(content: string): string {
450-
content = content.replace('"', '""')
450+
content = content.replaceAll('"', '""')
451451
return content.includes(',') ? '"' + content + '"' : content
452452
},
453453

0 commit comments

Comments
 (0)