Back button should send you to member info
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
4cf03e4c10
commit
1360f551ce
|
@ -1560,9 +1560,13 @@ const UserInfo: React.FC<Props> = ({
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let refireParams;
|
||||||
let previousPhase: RightPanelPhases;
|
let previousPhase: RightPanelPhases;
|
||||||
// We have no previousPhase for when viewing a UserInfo from a Group or without a Room at this time
|
// We have no previousPhase for when viewing a UserInfo from a Group or without a Room at this time
|
||||||
if (room) {
|
if (room && phase === RightPanelPhases.EncryptionPanel) {
|
||||||
|
previousPhase = RightPanelPhases.RoomMemberInfo;
|
||||||
|
refireParams = {member: member};
|
||||||
|
} else if (room) {
|
||||||
previousPhase = RightPanelPhases.RoomMemberList;
|
previousPhase = RightPanelPhases.RoomMemberList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1581,6 +1585,7 @@ const UserInfo: React.FC<Props> = ({
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
closeLabel={closeLabel}
|
closeLabel={closeLabel}
|
||||||
previousPhase={previousPhase}
|
previousPhase={previousPhase}
|
||||||
|
refireParams={refireParams}
|
||||||
>
|
>
|
||||||
{ content }
|
{ content }
|
||||||
</BaseCard>;
|
</BaseCard>;
|
||||||
|
|
Loading…
Reference in New Issue