0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): hide table empty state on table error (#2959)

This commit is contained in:
Xiao Yijun 2023-01-17 12:30:46 +08:00 committed by GitHub
parent 5f2140eb0f
commit 6130a1f8bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,10 +96,10 @@ const Table = <
<table>
<tbody>
{isLoading && <TableLoading columns={columns.length} />}
{!hasData && errorMessage && (
{!isLoading && !hasData && errorMessage && (
<TableError columns={columns.length} content={errorMessage} onRetry={onRetry} />
)}
{!isLoading && !hasData && (
{!isLoading && !hasData && !errorMessage && (
<TableEmpty
columns={columns.length}
title={placeholder?.title}