Skip to content
Snippets Groups Projects
Unverified Commit f3e29c4f authored by tamaina's avatar tamaina Committed by GitHub
Browse files

fix: LTLやGTLが無効になっている場合でもUI上にタブが表示される問題を修正 (#8026)

* wip

* add changelog

* 変換ミス修正
parent 2fc58a78
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
- クライアント: Renoteなノート詳細ページから元のノートページに遷移できるように - クライアント: Renoteなノート詳細ページから元のノートページに遷移できるように
### Bugfixes ### Bugfixes
- クライアント: LTLやGTLが無効になっている場合でもUI上にタブが表示される問題を修正
- クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正 - クライアント: ログインにおいてパスワードが誤っている際のエラーメッセージが正しく表示されない問題を修正
- クライアント: リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正 - クライアント: リアクションツールチップ、Renoteツールチップのユーザーの並び順を修正
- クライアント: サウンドのマスターボリュームが正しく保存されない問題を修正 - クライアント: サウンドのマスターボリュームが正しく保存されない問題を修正
......
...@@ -66,7 +66,7 @@ export default defineComponent({ ...@@ -66,7 +66,7 @@ export default defineComponent({
icon: 'fas fa-home', icon: 'fas fa-home',
iconOnly: true, iconOnly: true,
onClick: () => { this.src = 'home'; this.saveSrc(); }, onClick: () => { this.src = 'home'; this.saveSrc(); },
}, { }, ...(this.isLocalTimelineAvailable ? [{
active: this.src === 'local', active: this.src === 'local',
title: this.$ts._timelines.local, title: this.$ts._timelines.local,
icon: 'fas fa-comments', icon: 'fas fa-comments',
...@@ -78,13 +78,13 @@ export default defineComponent({ ...@@ -78,13 +78,13 @@ export default defineComponent({
icon: 'fas fa-share-alt', icon: 'fas fa-share-alt',
iconOnly: true, iconOnly: true,
onClick: () => { this.src = 'social'; this.saveSrc(); }, onClick: () => { this.src = 'social'; this.saveSrc(); },
}, { }] : []), ...(this.isGlobalTimelineAvailable ? [{
active: this.src === 'global', active: this.src === 'global',
title: this.$ts._timelines.global, title: this.$ts._timelines.global,
icon: 'fas fa-globe', icon: 'fas fa-globe',
iconOnly: true, iconOnly: true,
onClick: () => { this.src = 'global'; this.saveSrc(); }, onClick: () => { this.src = 'global'; this.saveSrc(); },
}], }] : [])],
})), })),
}; };
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment