mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
Angular: Fixes minor mistake in previous bsTypeahead PR (#50411)
This commit is contained in:
parent
74608d6480
commit
3866debae9
@ -35,8 +35,8 @@ coreModule.directive('bsTypeahead', [
|
||||
return value;
|
||||
},
|
||||
});
|
||||
var typeahead = element.dat('typeahead');
|
||||
typeahead.lookup = function (ev: any) {
|
||||
var typeahead = element.data('typeahead');
|
||||
typeahead.lookup = function () {
|
||||
var items;
|
||||
this.query = this.$element.val() || '';
|
||||
if (this.query.length < this.options.minLength) {
|
||||
|
Loading…
Reference in New Issue
Block a user