0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-23 12:20:21 +00:00

Tags: Fixed enter press clearing field

For 
This commit is contained in:
Dan Brown 2023-10-04 09:08:10 +01:00
parent bd7c7eb8d6
commit 0241032f06
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9

View file

@ -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);