mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-23 12:20:21 +00:00
parent
bd7c7eb8d6
commit
0241032f06
1 changed files with 4 additions and 1 deletions
|
@ -31,7 +31,10 @@ export class AutoSuggest extends Component {
|
|||
},
|
||||
event => {
|
||||
event.preventDefault();
|
||||
this.selectSuggestion(event.target.textContent);
|
||||
const selectionValue = event.target.textContent;
|
||||
if (selectionValue) {
|
||||
this.selectSuggestion(selectionValue);
|
||||
}
|
||||
},
|
||||
);
|
||||
navHandler.shareHandlingToEl(this.input);
|
||||
|
|
Loading…
Add table
Reference in a new issue