fix loading spinner / no results bug

This commit is contained in:
Francis Cao 2024-08-13 09:21:20 -07:00
parent f9c7129a3e
commit ae3888ced8

View File

@ -68,7 +68,7 @@ export function DataTable({
{hasData ? (typeof children === 'function' ? children(result) : children) : null}
{isLoading && <Loading position="page" />}
{!isLoading && !hasData && !query && <Empty />}
{noResults && <Empty message={formatMessage(messages.noResultsFound)} />}
{!isLoading && noResults && <Empty message={formatMessage(messages.noResultsFound)} />}
</div>
{allowPaging && hasData && (
<Pager