1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 06:33:48 +00:00

change search result is null (#7886)

This commit is contained in:
Michael An
2025-06-04 17:27:40 +08:00
committed by GitHub
parent 35595bef11
commit 139a25f59f

View File

@@ -579,7 +579,12 @@ class Search extends Component {
return this.renderResults(filteredItems);
}
else {
return <div className="search-result-none">{gettext('No results matching')}</div>;
return (
<div className="search-result-none">
<h4 className="search-results-title text-start">{gettext('Files')}</h4>
{gettext('No results matching')}
</div>
);
}
}