mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-03 08:24:26 +02:00
fix(frontend): pageheaderの型を修正 (#16803)
This commit is contained in:
@@ -447,7 +447,6 @@ const headerTabs = computed(() => room.value ? [{
|
||||
|
||||
const headerActions = computed<PageHeaderItem[]>(() => [{
|
||||
icon: 'ti ti-dots',
|
||||
text: '',
|
||||
handler: showMenu,
|
||||
}]);
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
*/
|
||||
|
||||
export type PageHeaderItem = {
|
||||
text: string;
|
||||
text?: string;
|
||||
icon: string;
|
||||
highlighted?: boolean;
|
||||
handler: (ev: MouseEvent) => void;
|
||||
|
||||
Reference in New Issue
Block a user