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:
authorPhil Hughes <me@iamphill.com>2018-01-26 14:34:06 +0300
committerPhil Hughes <me@iamphill.com>2018-01-29 12:06:58 +0300
commitc49fecdea5c3e638986be6f683f169bcaa2f973b (patch)
tree14626eb731fc76759486562d1636f41fd157a901 /app/assets/javascripts/filterable_list.js
parentb3c9d965591c6d1ebfc821c6a7f121fa0ad0a24b (diff)
fixed dashboard projects not being filterable
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 b84325ac5ce..a10f027de53 100644
--- a/app/assets/javascripts/filterable_list.js
+++ b/app/assets/javascripts/filterable_list.js
@@ -73,7 +73,7 @@ export default class FilterableList {
}
onFilterSuccess(response, queryData) {
- if (response.html) {
+ if (response.data.html) {
this.listHolderElement.innerHTML = response.data.html;
}