Welcome to mirror list, hosted at ThFree Co, Russian Federation.

null_dropdown.js « filtered_search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cfce2a5bebbb9b96917cff78639c558bdb1509b (plain)
1
2
3
4
5
6
7
8
9
import FilteredSearchDropdown from './filtered_search_dropdown';

export default class NullDropdown extends FilteredSearchDropdown {
  renderContent(forceShowList = false) {
    this.droplab.changeHookList(this.hookId, this.dropdown, [], this.config);

    super.renderContent(forceShowList);
  }
}