Commit ce374e96 authored by Clement Ho's avatar Clement Ho

Remove users variable

parent a3e9ef21
...@@ -471,9 +471,7 @@ GitLabDropdown = (function() { ...@@ -471,9 +471,7 @@ GitLabDropdown = (function() {
// matches the correct layout // matches the correct layout
if (this.fullData && hasMultiSelect) { if (this.fullData && hasMultiSelect) {
const inputValue = this.filterInput.val(); const inputValue = this.filterInput.val();
const users = this.filteredFullData(); this.options.processData.call(this.options, inputValue, this.filteredFullData(), this.parseData.bind(this));
this.options.processData.call(this.options, inputValue, users, this.parseData.bind(this));
} }
contentHtml = $('.dropdown-content', this.dropdown).html(); contentHtml = $('.dropdown-content', this.dropdown).html();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment