Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/misskey-dev/misskey into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
syuilo committed Mar 15, 2023
2 parents 63068fc + 7ff467e commit f9cdcc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ You should also include the user name that made the change.
- 付箋ウィジェットの高さを設定可能に
- 配送先サーバーが410 Goneで応答してきた場合は自動で配送停止をするように
- avatarBlurHash/bannerBlurHashの型をstringに限定
- ナビゲーションバーの項目に「プロフィール」を追加できるように

### Bugfixes
- プロフィールで設定した情報が削除できない問題を修正
Expand Down
6 changes: 6 additions & 0 deletions packages/frontend/src/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
},
});

0 comments on commit f9cdcc9

Please sign in to comment.