Commit f2cb3f27 authored by Clement Ho's avatar Clement Ho

Fix protected branches spec

parent c4f42544
...@@ -469,7 +469,7 @@ GitLabDropdown = (function() { ...@@ -469,7 +469,7 @@ GitLabDropdown = (function() {
// Process the data to make sure rendered data // Process the data to make sure rendered data
// matches the correct layout // matches the correct layout
if (this.fullData && hasMultiSelect) { if (this.fullData && hasMultiSelect && this.options.processData) {
const inputValue = this.filterInput.val(); const inputValue = this.filterInput.val();
this.options.processData.call(this.options, inputValue, this.filteredFullData(), this.parseData.bind(this)); this.options.processData.call(this.options, inputValue, this.filteredFullData(), this.parseData.bind(this));
} }
......
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