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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2017-05-31 22:56:14 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2017-05-31 22:56:14 +0300
commit73067e1cd7b35585e15567921429672f36676a19 (patch)
treec9a26492a9fde36fafa20a4c3370c1324a39ce23 /app/assets/javascripts/filterable_list.js
parent876107d520506a74c9984c08615dc74950add7b1 (diff)
Add missing parameter to onFilterSuccess
Diffstat (limited to 'app/assets/javascripts/filterable_list.js')
-rw-r--r--app/assets/javascripts/filterable_list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/filterable_list.js b/app/assets/javascripts/filterable_list.js
index 17c39cc7bbb..b2146627d39 100644
--- a/app/assets/javascripts/filterable_list.js
+++ b/app/assets/javascripts/filterable_list.js
@@ -56,7 +56,7 @@ export default class FilterableList {
});
}
- onFilterSuccess(data) {
+ onFilterSuccess(data, xhr) {
if (data.html) {
this.listHolderElement.innerHTML = data.html;
}