mirror of https://github.com/vector-im/riot-web
tidy code style
parent
43cc7deeda
commit
73411fa53d
|
@ -157,10 +157,12 @@ const SubSpace: React.FC<ISubspaceProps> = ({
|
||||||
|
|
||||||
let url: string;
|
let url: string;
|
||||||
if (space.avatar_url) {
|
if (space.avatar_url) {
|
||||||
url = MatrixClientPeg.get().mxcUrlToHttp(space.avatar_url,
|
url = MatrixClientPeg.get().mxcUrlToHttp(
|
||||||
|
space.avatar_url,
|
||||||
Math.floor(24 * window.devicePixelRatio),
|
Math.floor(24 * window.devicePixelRatio),
|
||||||
Math.floor(24 * window.devicePixelRatio),
|
Math.floor(24 * window.devicePixelRatio),
|
||||||
"crop");
|
"crop",
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <div className="mx_SpaceRoomDirectory_subspace">
|
return <div className="mx_SpaceRoomDirectory_subspace">
|
||||||
|
@ -262,10 +264,12 @@ const RoomTile = ({ room, event, editing, queueAction, onPreviewClick, onJoinCli
|
||||||
|
|
||||||
let url: string;
|
let url: string;
|
||||||
if (room.avatar_url) {
|
if (room.avatar_url) {
|
||||||
url = cli.mxcUrlToHttp(room.avatar_url,
|
url = cli.mxcUrlToHttp(
|
||||||
|
room.avatar_url,
|
||||||
Math.floor(32 * window.devicePixelRatio),
|
Math.floor(32 * window.devicePixelRatio),
|
||||||
Math.floor(32 * window.devicePixelRatio),
|
Math.floor(32 * window.devicePixelRatio),
|
||||||
"crop");
|
"crop",
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const content = <React.Fragment>
|
const content = <React.Fragment>
|
||||||
|
|
Loading…
Reference in New Issue