Skip to content
Snippets Groups Projects
Commit 48a97d25 authored by syuilo's avatar syuilo
Browse files

fix(client): センシティブワードの一覧にピン留めユーザーのIDが表示される問題を修正

Fix #10398
parent 658901a4
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,17 @@
-->
## 13.x.x (unreleased)
### General
-
### Client
- センシティブワードの一覧にピン留めユーザーのIDが表示される問題を修正
### Server
-
## 13.10.2
### Server
......
......@@ -46,7 +46,7 @@ let sensitiveWords: string = $ref('');
async function init() {
const meta = await os.api('admin/meta');
sensitiveWords = meta.pinnedUsers.join('\n');
sensitiveWords = meta.sensitiveWords.join('\n');
}
function save() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment