diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2017-09-26 21:19:28 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-09-26 21:19:28 +0000 |
commit | e7ad2bf5f104098e356facf2cc53c046cf624a39 (patch) | |
tree | 75abbe70761bdb5e2a15ce23ce1833d26c9958e2 /app/assets/javascripts | |
parent | 0d389682f87fa718784f66faa1082f2f3efdf687 (diff) | |
download | gitlab-ce-e7ad2bf5f104098e356facf2cc53c046cf624a39.tar.gz |
Make issue boards sidebar full height
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r-- | app/assets/javascripts/boards/boards_bundle.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/boards/boards_bundle.js b/app/assets/javascripts/boards/boards_bundle.js index ea00efe4b46..815248f38ee 100644 --- a/app/assets/javascripts/boards/boards_bundle.js +++ b/app/assets/javascripts/boards/boards_bundle.js @@ -77,9 +77,6 @@ $(() => { }); Store.rootPath = this.boardsEndpoint; - this.filterManager = new FilteredSearchBoards(Store.filter, true); - this.filterManager.setup(); - // Listen for updateTokens event eventHub.$on('updateTokens', this.updateTokens); }, @@ -87,6 +84,9 @@ $(() => { eventHub.$off('updateTokens', this.updateTokens); }, mounted () { + this.filterManager = new FilteredSearchBoards(Store.filter, true); + this.filterManager.setup(); + Store.disabled = this.disabled; gl.boardService.all() .then(response => response.json()) |