mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-23 20:43:38 +00:00
fix(frontend): lookupページでリモートURLを指定した際に正しく動作しない問題を修正
This commit is contained in:
@@ -59,6 +59,7 @@
|
||||
- Fix: 照会ダイアログでap/showでローカルユーザーを解決した際@username@nullに飛ばされる問題を修正
|
||||
- Fix: アイコンのデコレーションを付ける際にデコレーションが表示されなくなる問題を修正
|
||||
- Fix: 管理中アカウント一覧で正しい表示が行われない問題を修正
|
||||
- Fix: lookupページでリモートURLを指定した際に正しく動作しない問題を修正
|
||||
|
||||
### Server
|
||||
- Feat: サーバー管理コマンド
|
||||
|
||||
@@ -48,7 +48,7 @@ function _fetch_() {
|
||||
if (res.type === 'User') {
|
||||
mainRouter.replace('/@:acct/:page?', {
|
||||
params: {
|
||||
acct: res.host != null ? `${res.object.username}@${res.object.host}` : res.object.username,
|
||||
acct: res.object.host != null ? `${res.object.username}@${res.object.host}` : res.object.username,
|
||||
},
|
||||
});
|
||||
} else if (res.type === 'Note') {
|
||||
|
||||
Reference in New Issue
Block a user