Skip to content

Commit

Permalink
Update for version 20210426-grafana7
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Ferrero committed Apr 26, 2021
1 parent 1e1b47a commit ade268d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directives/tag_input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class TagInputCtrl {

public getTags(): Promise<string[]> {
const query = this.$scope.getTagInputValue();
return this.promiseUtils.resolvedPromise((this.tagValues||[])
return this.promiseUtils.resolvedPromise((this.tagValues || [])
.filter((tagValue) => _.includes(tagValue, query))
.slice(0, TAG_VALUE_SUGGESTIONS_LIMIT)
.map((tagValue) => {
Expand Down

0 comments on commit ade268d

Please sign in to comment.