Fix focus in autocomplete

pull/6242/head
Oliver Günther 7 years ago
parent b1a0be54b7
commit 8e2631a45b
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 2
      frontend/app/components/wp-relations/wp-relations-create/wp-relations-autocomplete/wp-relations-autocomplete.upgraded.component.ts

@ -85,6 +85,8 @@ export class WpRelationsAutocompleteComponent implements OnInit {
},
minLength: 0
}).focus(() => !selected && input.autocomplete('search', input.val()));
setTimeout(() => input.focus(), 20);
}
private getIdentifier(workPackage:WorkPackageResourceInterface):string {

Loading…
Cancel
Save