Skip to content

Commit

Permalink
fix(client): センシティブワードの一覧にピン留めユーザーのIDが表示される問題を修正
Browse files Browse the repository at this point in the history
Fix #10398
  • Loading branch information
syuilo committed Mar 23, 2023
1 parent 658901a commit 48a97d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
-->

## 13.x.x (unreleased)

### General
-

### Client
- センシティブワードの一覧にピン留めユーザーのIDが表示される問題を修正

### Server
-

## 13.10.2

### Server
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/admin/moderation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 48a97d2

Please sign in to comment.