1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-11 20:01:10 +00:00

delete ... in search and select component

This commit is contained in:
Michael An
2023-12-04 15:13:56 +08:00
parent 389d3a35eb
commit acaad1d0d1
18 changed files with 18 additions and 18 deletions

View File

@@ -476,7 +476,7 @@ class FileChooser extends React.Component {
<Fragment>
{isPro && (
<div className="file-chooser-search-input">
<Input className="search-input mb-2" placeholder={gettext('Search...')} type='text' value={this.state.searchInfo} onChange={this.onSearchInfoChanged}></Input>
<Input className="search-input mb-2" placeholder={gettext('Search')} type='text' value={this.state.searchInfo} onChange={this.onSearchInfoChanged}></Input>
{this.state.searchInfo.length !== 0 && (
<span className="search-control attr-action-icon fas fa-times" onClick={this.onCloseSearching}></span>
)}