1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-14 02:55:39 +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

@@ -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,