File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
src/components/views/rooms/RoomListPanel Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,14 @@ export function RoomListHeaderView(): JSX.Element {
6969 { vm . displayComposeMenu ? (
7070 < ComposeMenu vm = { vm } />
7171 ) : (
72- < IconButton
73- aria-label = { _t ( "action|start_chat" ) }
74- onClick = { ( e ) => vm . createChatRoom ( e . nativeEvent ) }
75- >
76- < ComposeIcon color = "var(--cpd-color-icon-secondary)" />
77- </ IconButton >
72+ < Tooltip label = { _t ( "action|start_chat" ) } >
73+ < IconButton
74+ aria-label = { _t ( "action|start_chat" ) }
75+ onClick = { ( e ) => vm . createChatRoom ( e . nativeEvent ) }
76+ >
77+ < ComposeIcon color = "var(--cpd-color-icon-secondary)" />
78+ </ IconButton >
79+ </ Tooltip >
7880 ) }
7981 </ div >
8082 </ ReleaseAnnouncement >
@@ -146,7 +148,7 @@ interface MenuTriggerProps extends React.ComponentProps<typeof IconButton> {
146148}
147149
148150const MenuTrigger = ( { ref, ...props } : MenuTriggerProps ) : JSX . Element => (
149- < Tooltip label = { _t ( "action|start_chat " ) } >
151+ < Tooltip label = { _t ( "action|add " ) } >
150152 < IconButton aria-label = { _t ( "action|add" ) } { ...props } ref = { ref } >
151153 < ComposeIcon color = "var(--cpd-color-icon-secondary)" />
152154 </ IconButton >
You can’t perform that action at this time.
0 commit comments