mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
hide: search results when forms enabled (#5092)
This commit is contained in:
parent
6826fdc8df
commit
840863c7ba
1 changed files with 1 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ class ManageOrgUsersComponent extends React.Component {
|
|||
/>
|
||||
)}
|
||||
|
||||
{users?.length === 0 && (
|
||||
{users?.length === 0 && !showNewUserForm && !showUploadUserForm && (
|
||||
<div className="d-flex justify-content-center flex-column">
|
||||
<span className="text-center pt-5 font-weight-bold">No result found</span>
|
||||
<small className="text-center text-muted">Try changing the filters</small>
|
||||
|
|
|
|||
Loading…
Reference in a new issue