We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78483e1 commit 5ea9643Copy full SHA for 5ea9643
CHANGELOG.md
@@ -5,6 +5,7 @@
5
6
### Client
7
- Fix: 画面サイズが変わった際にナビゲーションバーが自動で折りたたまれない問題を修正
8
+- Fix: サーバー情報メニューに区切り線が不足していたのを修正
9
10
### Server
11
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
packages/frontend/src/ui/_common_/common.ts
@@ -124,7 +124,7 @@ export function openInstanceMenu(ev: MouseEvent) {
124
});
125
}
126
127
- if (!instance.impressumUrl && !instance.tosUrl && !instance.privacyPolicyUrl) {
+ if (instance.impressumUrl != null || instance.tosUrl != null || instance.privacyPolicyUrl != null) {
128
menuItems.push({ type: 'divider' });
129
130
0 commit comments