1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 18:45:35 +02:00

Fix: リスト編集画面におけるユーザー追加時のユーザー選択ダイアログにおいて、自身のアカウントが検索結果の一覧に表示されない問題を修正 (#17386)

* fix(frontend): cannot add self to list by selectUser dialog

* docs(changelog): update changelog
This commit is contained in:
Sayamame-beans
2026-05-10 07:55:25 +09:00
committed by GitHub
parent a09a2c2eee
commit 3074784d4d
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
- Fix: テーマエディター使用時に、最初の変更のみ適用される問題を修正
- Fix: テーマのプレビュー時、既存のテーマとIDが被っている場合にプレビューできない問題を修正
- Fix: テーマのインストールエラーの表示を改善
- Fix: リスト編集画面におけるユーザー追加時のユーザー選択ダイアログにおいて、自身のアカウントが検索結果の一覧に表示されない問題を修正
### Server
-

View File

@@ -99,7 +99,7 @@ function fetchList() {
}
function addUser() {
os.selectUser().then(user => {
os.selectUser({ includeSelf: true }).then(user => {
if (!list.value) return;
os.apiWithDialog('users/lists/push', {
listId: list.value.id,