1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-11 03:41:12 +00:00

[search] removed the dot after 'No results matching' (#5904)

This commit is contained in:
llj
2024-01-31 13:29:42 +08:00
committed by GitHub
parent 1109091348
commit f5fdebe5bb
4 changed files with 4 additions and 4 deletions

View File

@@ -283,7 +283,7 @@ class FileChooser extends React.Component {
}
if (this.state.isResultGot && this.state.searchResults.length === 0) {
return (<div className="search-result-none text-center">{gettext('No results matching.')}</div>);
return (<div className="search-result-none text-center">{gettext('No results matching')}</div>);
}
if (this.state.isResultGot && this.state.searchResults.length > 0) {