mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-26 15:40:51 +01:00
Fix SelectReportedChatsView
This commit is contained in:
parent
e1bf00472a
commit
6dc2b678ca
@ -21,6 +21,7 @@ export const SelectReportedChatsView: FC<{}> = props =>
|
|||||||
return messengerHistory.filter(chat => (chat.entityId === activeReport.reportedUserId) && (chat.type === ChatEntryType.TYPE_IM));
|
return messengerHistory.filter(chat => (chat.entityId === activeReport.reportedUserId) && (chat.type === ChatEntryType.TYPE_IM));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return [];
|
||||||
}, [ activeReport, chatHistory, messengerHistory ]);
|
}, [ activeReport, chatHistory, messengerHistory ]);
|
||||||
|
|
||||||
const selectChat = (chatEntry: IChatEntry) =>
|
const selectChat = (chatEntry: IChatEntry) =>
|
||||||
@ -62,7 +63,7 @@ export const SelectReportedChatsView: FC<{}> = props =>
|
|||||||
<Text>{ LocalizeText('help.emergency.chat_report.description') }</Text>
|
<Text>{ LocalizeText('help.emergency.chat_report.description') }</Text>
|
||||||
</Column>
|
</Column>
|
||||||
<Column gap={ 1 } overflow="hidden">
|
<Column gap={ 1 } overflow="hidden">
|
||||||
{ !!!userChats.length &&
|
{ !userChats || !userChats.length &&
|
||||||
<Text>{ LocalizeText('help.cfh.error.no_user_data') }</Text> }
|
<Text>{ LocalizeText('help.cfh.error.no_user_data') }</Text> }
|
||||||
{ (userChats.length > 0) &&
|
{ (userChats.length > 0) &&
|
||||||
<AutoGrid gap={ 1 } columnCount={ 1 } columnMinHeight={ 25 } overflow="auto">
|
<AutoGrid gap={ 1 } columnCount={ 1 } columnMinHeight={ 25 } overflow="auto">
|
||||||
|
Loading…
Reference in New Issue
Block a user