feat(client): Navbar の設定項目に「プロフィール」を追加 (#10332)
* feat: navbar項目 自プロフィールを追加 (misskey-dev#10330) * change CHANGELOG.md
This commit is contained in:
parent
a8bd3e8e53
commit
7ff467e8e0
2 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,7 @@ You should also include the user name that made the change.
|
|||
- 付箋ウィジェットの高さを設定可能に
|
||||
- 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように
|
||||
- avatarBlurHash/bannerBlurHashの型をstringに限定
|
||||
- ナビゲーションバーの項目に「プロフィール」を追加できるように
|
||||
|
||||
### Bugfixes
|
||||
- プロフィールで設定した情報が削除できない問題を修正
|
||||
|
|
|
@ -136,4 +136,10 @@ export const navbarItemDef = reactive({
|
|||
location.reload();
|
||||
},
|
||||
},
|
||||
profile: {
|
||||
title: i18n.ts.profile,
|
||||
icon: 'ti ti-user',
|
||||
show: computed(() => $i != null),
|
||||
to: `/@${$i?.username}`,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue