mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:58:07 +08:00
merge
This commit is contained in:
commit
2ab137d4d7
@ -27,6 +27,7 @@ export default class DocSearch extends React.Component {
|
||||
}
|
||||
|
||||
onSearch(query) {
|
||||
query = query.toLowerCase();
|
||||
if (query === '') {
|
||||
this.setState({searchResults: []});
|
||||
return;
|
||||
@ -43,7 +44,13 @@ export default class DocSearch extends React.Component {
|
||||
.substring(Math.max(0, index - 20), index + 60)
|
||||
.replace(query, `<strong>${query}</strong>`)
|
||||
});
|
||||
} else if (doc.title.indexOf(query) !== -1) {
|
||||
} else if (doc.title.toLowerCase().indexOf(query) !== -1) {
|
||||
results.push({
|
||||
title: doc.title,
|
||||
path: doc.path,
|
||||
abstract: ''
|
||||
});
|
||||
} else if (doc.path.toLowerCase().indexOf(query) !== -1) {
|
||||
results.push({
|
||||
title: doc.title,
|
||||
path: doc.path,
|
||||
|
Loading…
Reference in New Issue
Block a user