feat(client): Navbar の設定項目に「プロフィール」を追加 (#10332)

* feat: navbar項目 自プロフィールを追加 (misskey-dev#10330)

* change CHANGELOG.md
This commit is contained in:
kakkokari-gtyih 2023-03-15 18:01:56 +09:00 committed by GitHub
parent a8bd3e8e53
commit 7ff467e8e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -29,6 +29,7 @@ You should also include the user name that made the change.
- 付箋ウィジェットの高さを設定可能に
- 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように
- avatarBlurHash/bannerBlurHashの型をstringに限定
- ナビゲーションバーの項目に「プロフィール」を追加できるように
### Bugfixes
- プロフィールで設定した情報が削除できない問題を修正

View file

@ -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}`,
},
});