Skip to content
Snippets Groups Projects
Commit 3d127d58 authored by Lukas's avatar Lukas Committed by mcfarhat
Browse files

Show nothing if data is undefined and search wasn't executed

parent c33100e0
No related branches found
No related tags found
1 merge request!594Lbudginas/#483 interactions tab bug
...@@ -46,13 +46,14 @@ const InteractionsTabContent: React.FC<InteractionsTabContentProps> = ({ ...@@ -46,13 +46,14 @@ const InteractionsTabContent: React.FC<InteractionsTabContentProps> = ({
} = useCommentSearch(props); } = useCommentSearch(props);
const buildCommentSearchView = () => { const buildCommentSearchView = () => {
if (!isCommentSearchDataLoading && !commentSearchData?.total_operations) { if (!commentSearchData) return;
if (!isCommentSearchDataFetching && !commentSearchData?.total_operations) {
return ( return (
<div> <div>
<NoResult /> <NoResult />
</div> </div>
); );
} else if (isCommentSearchDataFetching && isCommentSearchDataLoading) { } else if (isCommentSearchDataLoading || isCommentSearchDataFetching) {
return ( return (
<div className="flex justify-center text-center items-center"> <div className="flex justify-center text-center items-center">
<Loader2 className="animate-spin mt-1 text-text h-12 w-12 ml-3 ..." /> <Loader2 className="animate-spin mt-1 text-text h-12 w-12 ml-3 ..." />
...@@ -92,6 +93,7 @@ const InteractionsTabContent: React.FC<InteractionsTabContentProps> = ({ ...@@ -92,6 +93,7 @@ const InteractionsTabContent: React.FC<InteractionsTabContentProps> = ({
</CardHeader> </CardHeader>
<CardContent> <CardContent>
<AccountPageInteractionSearch <AccountPageInteractionSearch
setIsFiltersActive={setIsFiltersActive}
isCommentSearchDataLoading={isCommentSearchDataFetching} isCommentSearchDataLoading={isCommentSearchDataFetching}
/> />
</CardContent> </CardContent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment