Have full room description readable from tooltip (#85)

The `RoomCard`  clips text two lines before ellipsing. This will make the rest of the description readable if you hover over the description.
This commit is contained in:
Eric Eastwood 2022-10-18 18:38:00 -05:00 committed by GitHub
parent f9e16964e1
commit 5142e508a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class RoomCardView extends TemplateView {
},
[aliasOrRoomId]
),
t.p({ className: 'RoomCardView_topic' }, [vm.topic || '']),
t.p({ className: 'RoomCardView_topic', title: vm.topic || null }, [vm.topic || '']),
t.div({ className: 'RoomCardView_footer' }, [
t.div({ className: 'RoomCardView_footerInner' }, [
t.div({}, [memberDisplay]),