1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Iterate EntityTile once more

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-06-24 14:39:51 +02:00
parent 5b21cff240
commit 8fb788ae56

View File

@@ -62,21 +62,21 @@ function presenceClassForMember(presenceState: string, lastActiveAgo: number, sh
}
interface IProps {
name?: string,
title?: string,
avatarJsx?: JSX.Element, // <BaseAvatar />
className?: string,
presenceState?: string,
presenceLastActiveAgo?: number,
presenceLastTs?: number,
presenceCurrentlyActive?: boolean,
showInviteButton?: boolean,
onClick?(): void,
suppressOnHover?: boolean,
showPresence?: boolean,
subtextLabel?: string,
e2eStatus?: string,
powerStatus?: PowerStatus,
name?: string;
title?: string;
avatarJsx?: JSX.Element; // <BaseAvatar />
className?: string;
presenceState?: string;
presenceLastActiveAgo?: number;
presenceLastTs?: number;
presenceCurrentlyActive?: boolean;
showInviteButton?: boolean;
onClick?(): void;
suppressOnHover?: boolean;
showPresence?: boolean;
subtextLabel?: string;
e2eStatus?: string;
powerStatus?: PowerStatus;
}
interface IState {