From 737448c19b912c3deaf3ca52fca51aff6a1b9873 Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 26 Feb 2026 18:52:07 -0600 Subject: [PATCH] fix(toolbar): Fixes build, missing props. --- react/features/toolbox/components/web/HangupMenuButton.tsx | 5 +++++ react/features/toolbox/components/web/OverflowMenuButton.tsx | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/react/features/toolbox/components/web/HangupMenuButton.tsx b/react/features/toolbox/components/web/HangupMenuButton.tsx index 1641ec6cc5..23b535636e 100644 --- a/react/features/toolbox/components/web/HangupMenuButton.tsx +++ b/react/features/toolbox/components/web/HangupMenuButton.tsx @@ -18,6 +18,11 @@ interface IProps extends WithTranslation { */ ariaControls: String; + /** + * Aria label for the Button. + */ + ariaLabel?: string; + /** * A child React Element to display within {@code InlineDialog}. */ diff --git a/react/features/toolbox/components/web/OverflowMenuButton.tsx b/react/features/toolbox/components/web/OverflowMenuButton.tsx index d9583a0ecb..3258bd1105 100644 --- a/react/features/toolbox/components/web/OverflowMenuButton.tsx +++ b/react/features/toolbox/components/web/OverflowMenuButton.tsx @@ -37,6 +37,11 @@ interface IProps { */ ariaControls: string; + /** + * Aria label for the Button. + */ + ariaLabel?: string; + /** * Information about the buttons that need to be rendered in the overflow menu. */