parent
89870cafc2
commit
4d789f84e3
2 changed files with 3 additions and 4 deletions
|
@ -110,7 +110,6 @@ export const ClientsSection = () => {
|
||||||
<DeleteConfirm />
|
<DeleteConfirm />
|
||||||
<KeycloakDataTable
|
<KeycloakDataTable
|
||||||
key={key}
|
key={key}
|
||||||
emptyState={<> </>}
|
|
||||||
loader={loader}
|
loader={loader}
|
||||||
isPaginated
|
isPaginated
|
||||||
ariaLabelKey="clients:clientList"
|
ariaLabelKey="clients:clientList"
|
||||||
|
|
|
@ -413,9 +413,9 @@ export function KeycloakDataTable<T>({
|
||||||
)}
|
)}
|
||||||
{!loading &&
|
{!loading &&
|
||||||
(!data || data.length === 0) &&
|
(!data || data.length === 0) &&
|
||||||
(search !== "" || !isSearching) &&
|
search !== "" &&
|
||||||
searchPlaceholderKey &&
|
!isSearching &&
|
||||||
!emptyState && (
|
searchPlaceholderKey && (
|
||||||
<ListEmptyState
|
<ListEmptyState
|
||||||
hasIcon={true}
|
hasIcon={true}
|
||||||
icon={icon}
|
icon={icon}
|
||||||
|
|
Loading…
Reference in a new issue