Message preview should show tooltip with the full message on hover (#30265)
* Add title attribute for message preview So that the full message is shown in a tooltip on hover. * Fix test * Update src/components/views/rooms/RoomListPanel/RoomListItemView.tsx Co-authored-by: Florian Duros <florianduros@element.io> --------- Co-authored-by: Florian Duros <florianduros@element.io>
This commit is contained in:
co-authored by
Florian Duros
parent
5b659fe2e5
commit
8a879c7fca
@@ -94,7 +94,11 @@ export const RoomListItemView = memo(function RoomListItemView({
|
||||
<div className="mx_RoomListItemView_roomName" title={vm.name}>
|
||||
{vm.name}
|
||||
</div>
|
||||
<div className="mx_RoomListItemView_messagePreview">{vm.messagePreview}</div>
|
||||
{vm.messagePreview && (
|
||||
<div className="mx_RoomListItemView_messagePreview" title={vm.messagePreview}>
|
||||
{vm.messagePreview}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
{showHoverMenu ? (
|
||||
<RoomListItemMenuView
|
||||
|
||||
Reference in New Issue
Block a user