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

Fix #10398
This commit is contained in:
syuilo 2023-03-23 17:07:46 +09:00
parent 658901a47f
commit 48a97d25e5
2 changed files with 12 additions and 1 deletions

View File

@ -12,6 +12,17 @@
-->
## 13.x.x (unreleased)
### General
-
### Client
- センシティブワードの一覧にピン留めユーザーのIDが表示される問題を修正
### Server
-
## 13.10.2
### Server

View File

@ -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() {