Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo 2023-03-15 18:09:03 +09:00
commit f9cdcc9bc6
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で応答してきた場合は自動で配送停止をするように - 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように
- avatarBlurHash/bannerBlurHashの型をstringに限定 - avatarBlurHash/bannerBlurHashの型をstringに限定
- ナビゲーションバーの項目に「プロフィール」を追加できるように
### Bugfixes ### Bugfixes
- プロフィールで設定した情報が削除できない問題を修正 - プロフィールで設定した情報が削除できない問題を修正

View File

@ -136,4 +136,10 @@ export const navbarItemDef = reactive({
location.reload(); location.reload();
}, },
}, },
profile: {
title: i18n.ts.profile,
icon: 'ti ti-user',
show: computed(() => $i != null),
to: `/@${$i?.username}`,
},
}); });