From 2f091ffd3d59e37666a48d9b14b5d4306634a8f5 Mon Sep 17 00:00:00 2001 From: Jan Kessler Date: Fri, 16 Feb 2024 21:50:52 +0100 Subject: [PATCH] refactor: End meeting button tweaks (#19261) * use label endMeetingForAll also for end button in settings dropdown * change end button icon in settings dropdown from icon-bbb-application to icon-bbb-close --- .../ui/components/nav-bar/settings-dropdown/component.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/component.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/component.jsx index da7127fd48..a204acd877 100644 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/component.jsx @@ -85,8 +85,8 @@ const intlMessages = defineMessages({ id: 'app.navBar.settingsDropdown.helpDesc', description: 'Describes help option', }, - endMeetingLabel: { - id: 'app.navBar.settingsDropdown.endMeetingLabel', + endMeetingForAllLabel: { + id: 'app.navBar.settingsDropdown.endMeetingForAllLabel', description: 'End meeting options label', }, endMeetingDesc: { @@ -361,8 +361,8 @@ class SettingsDropdown extends PureComponent { this.menuItems.push( { key: 'list-item-end-meeting', - icon: 'application', - label: intl.formatMessage(intlMessages.endMeetingLabel), + icon: 'close', + label: intl.formatMessage(intlMessages.endMeetingForAllLabel), description: intl.formatMessage(intlMessages.endMeetingDesc), customStyles, onClick: () => this.setEndMeetingConfirmationModalIsOpen(true),