Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Set max size for Element logo in search warning (#11779)
Browse files Browse the repository at this point in the history
  • Loading branch information
Germain authored Oct 20, 2023
1 parent f784a08 commit 8cf6f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/elements/SearchWarning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function SearchWarning({ isRoomEncrypted, kind }: IProps): JSX.El
let text: ReactNode | undefined;
let logo: JSX.Element | undefined;
if (desktopBuilds?.get("available")) {
logo = <img alt="" src={desktopBuilds.get("logo")} />;
logo = <img alt="" src={desktopBuilds.get("logo")} width="32px" />;
const buildUrl = desktopBuilds.get("url");
switch (kind) {
case WarningKind.Files:
Expand Down

0 comments on commit 8cf6f03

Please sign in to comment.