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 { interface IProps {
name?: string, name?: string;
title?: string, title?: string;
avatarJsx?: JSX.Element, // <BaseAvatar /> avatarJsx?: JSX.Element; // <BaseAvatar />
className?: string, className?: string;
presenceState?: string, presenceState?: string;
presenceLastActiveAgo?: number, presenceLastActiveAgo?: number;
presenceLastTs?: number, presenceLastTs?: number;
presenceCurrentlyActive?: boolean, presenceCurrentlyActive?: boolean;
showInviteButton?: boolean, showInviteButton?: boolean;
onClick?(): void, onClick?(): void;
suppressOnHover?: boolean, suppressOnHover?: boolean;
showPresence?: boolean, showPresence?: boolean;
subtextLabel?: string, subtextLabel?: string;
e2eStatus?: string, e2eStatus?: string;
powerStatus?: PowerStatus, powerStatus?: PowerStatus;
} }
interface IState { interface IState {