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:
parent
5f2140eb0f
commit
6130a1f8bd
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue