fix(frontend): モバイル環境でタイムラインの上段メニューに空のボタンが追加されている問題を修正 (MisskeyIO#224)
This commit is contained in:
parent
0ecda3d386
commit
29f6267aa5
|
@ -122,13 +122,14 @@ function focus(): void {
|
|||
tlComponent.focus();
|
||||
}
|
||||
|
||||
const headerActions = $computed(() => [
|
||||
...[deviceKind === 'desktop' ? {
|
||||
const headerActions = $computed(() => deviceKind === 'desktop'
|
||||
? [{
|
||||
icon: 'ti ti-refresh',
|
||||
text: i18n.ts.reload,
|
||||
handler: () => { tlComponent.reloadTimeline(); },
|
||||
} : {}],
|
||||
]);
|
||||
}]
|
||||
: []
|
||||
);
|
||||
|
||||
const headerTabs = $computed(() => [{
|
||||
key: 'home',
|
||||
|
|
Loading…
Reference in New Issue