summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-01-26 11:34:06 +0000
committerPhil Hughes <me@iamphill.com>2018-01-29 09:06:58 +0000
commitc49fecdea5c3e638986be6f683f169bcaa2f973b (patch)
tree14626eb731fc76759486562d1636f41fd157a901
parentb3c9d965591c6d1ebfc821c6a7f121fa0ad0a24b (diff)
downloadgitlab-ce-c49fecdea5c3e638986be6f683f169bcaa2f973b.tar.gz
fixed dashboard projects not being filterable
-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;
}