Prevent channel from vertically growing when containing facepile (#6439)

Previously at UI font size of 20
 - User-less channel: 28 px tall
 - Occupied channel: 30 px tall
 
Now, still at UI font size 20:
 - User-less channel: 30 px tall
 - Occupied channel: 30 px tall

Release Notes:

- Fixed an issue where a channel would grow in height while showing
participant avatars.
This commit is contained in:
Julia 2024-01-24 16:17:25 -05:00 committed by GitHub
commit 569bb687be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2240,6 +2240,7 @@ impl CollabPanel {
let width = self.width.unwrap_or(px(240.));
div()
.h_6()
.id(channel_id as usize)
.group("")
.flex()