mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
fix: The dashboard needs a refresh to get the add folder icon(+) back once the search icon is clicked #8679 (#9020)
This commit is contained in:
parent
6c6cad8bc8
commit
b3e97f3eba
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ export const SearchBox = forwardRef(
|
|||
autoFocus={autoFocus}
|
||||
ref={ref}
|
||||
/>
|
||||
{searchText.length > 0 ? (
|
||||
{searchText.length >= 0 ? (
|
||||
<span className="input-icon-addon end" onMouseDown={clearSearchText}>
|
||||
<div className="d-flex tj-common-search-input-clear-icon" title="clear">
|
||||
<SolidIcon name="remove" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue