mirror of
https://example.com
synced 2024-11-22 11:26:38 +09:00
feat: move local timeline tab
This commit is contained in:
parent
889ed7388e
commit
c2a0facf2e
2 changed files with 15 additions and 13 deletions
|
@ -6,6 +6,8 @@
|
|||
|
||||
## 主要な変更点
|
||||
|
||||
- ローカルタイムラインの位置をグローバルタイムラインの直前に移動
|
||||
- ローカルタイムラインよりもソーシャルタイムラインのほうが使いやすいと考えたため
|
||||
- 「Firefish について」のページに Misskey の主要な貢献者を表示
|
||||
- このソフトウェアは Misskey のフォークであるため
|
||||
|
||||
|
|
|
@ -97,15 +97,15 @@ const keymap = {
|
|||
|
||||
let timelines = ["home"];
|
||||
|
||||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("local");
|
||||
}
|
||||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("social");
|
||||
}
|
||||
if (isRecommendedTimelineAvailable) {
|
||||
timelines.push("recommended");
|
||||
}
|
||||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("local");
|
||||
}
|
||||
if (isGlobalTimelineAvailable) {
|
||||
timelines.push("global");
|
||||
}
|
||||
|
@ -229,16 +229,6 @@ const headerTabs = $computed(() => [
|
|||
icon: "ph-house ph-bold ph-lg",
|
||||
iconOnly: true,
|
||||
},
|
||||
...(isLocalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
key: "local",
|
||||
title: i18n.ts._timelines.local,
|
||||
icon: "ph-users ph-bold ph-lg",
|
||||
iconOnly: true,
|
||||
},
|
||||
]
|
||||
: []),
|
||||
...(isLocalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
|
@ -259,6 +249,16 @@ const headerTabs = $computed(() => [
|
|||
},
|
||||
]
|
||||
: []),
|
||||
...(isLocalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
key: "local",
|
||||
title: i18n.ts._timelines.local,
|
||||
icon: "ph-users ph-bold ph-lg",
|
||||
iconOnly: true,
|
||||
},
|
||||
]
|
||||
: []),
|
||||
...(isGlobalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue