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

Commit 0c5b231

Browse files
authored
Merge pull request #50 from jianjianai/dev
更多自定义
2 parents 34c84bc + 2da5ef3 commit 0c5b231

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)