fix(frontend): pageheaderの型を修正 (#16803)

This commit is contained in:
かっこかり 2025-11-20 15:40:52 +09:00 committed by GitHub
parent e588615ea9
commit 7afe0d44d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View File

@ -447,7 +447,6 @@ const headerTabs = computed(() => room.value ? [{
const headerActions = computed<PageHeaderItem[]>(() => [{
icon: 'ti ti-dots',
text: '',
handler: showMenu,
}]);

View File

@ -4,8 +4,8 @@
*/
export type PageHeaderItem = {
text: string;
icon: string;
highlighted?: boolean;
handler: (ev: MouseEvent) => void;
text?: string;
icon: string;
highlighted?: boolean;
handler: (ev: MouseEvent) => void;
};