Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 2da5ef3

Browse files
committed
更多自定义
1 parent f352233 commit 2da5ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/web/js/module/ChatMessage/ChatSuggestionsWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class ChatSuggestionsWorker {
4242
this.suggestions = suggestions;
4343
suggestions.forEach((s) => {
4444
let a = document.createElement('a');
45-
a.innerHTML = s;
45+
a.innerText = s;
4646
this.searchSuggestions.appendChild(a);
4747
});
4848
}

0 commit comments

Comments
 (0)