[Backport staging] Fix avatars in public room & space search being flex shrunk (#11591)
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>pull/28217/head
parent
708537d615
commit
9834686e90
|
@ -277,6 +277,7 @@ limitations under the License.
|
||||||
margin-right: $spacing-8;
|
margin-right: $spacing-8;
|
||||||
width: 24px;
|
width: 24px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
|
||||||
.mx_BaseAvatar {
|
.mx_BaseAvatar {
|
||||||
width: inherit;
|
width: inherit;
|
||||||
|
|
|
@ -563,7 +563,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||||
};
|
};
|
||||||
|
|
||||||
let otherSearchesSection: JSX.Element | undefined;
|
let otherSearchesSection: JSX.Element | undefined;
|
||||||
if (trimmedQuery || filter !== Filter.PublicRooms) {
|
if (trimmedQuery || (filter !== Filter.PublicRooms && filter !== Filter.PublicSpaces)) {
|
||||||
otherSearchesSection = (
|
otherSearchesSection = (
|
||||||
<div
|
<div
|
||||||
className="mx_SpotlightDialog_section mx_SpotlightDialog_otherSearches"
|
className="mx_SpotlightDialog_section mx_SpotlightDialog_otherSearches"
|
||||||
|
|
Loading…
Reference in New Issue