diff options
| author | Phil Hughes <me@iamphill.com> | 2016-08-19 20:23:56 +0100 |
|---|---|---|
| committer | Phil Hughes <me@iamphill.com> | 2016-08-31 09:47:25 +0100 |
| commit | 105c80b6be3ae0bb550f455d0fcb1d4fe34462b5 (patch) | |
| tree | 01e152ca5c13e8874e2bb1d3977857a841125401 /spec/javascripts | |
| parent | 4f341ed85b5fb37250799ec13948bbe88074d376 (diff) | |
| download | gitlab-ce-105c80b6be3ae0bb550f455d0fcb1d4fe34462b5.tar.gz | |
Shows count at bottom of list
Only visible when scrollable area is larger than height
Diffstat (limited to 'spec/javascripts')
| -rw-r--r-- | spec/javascripts/boards/mock_data.js.es6 | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/spec/javascripts/boards/mock_data.js.es6 b/spec/javascripts/boards/mock_data.js.es6 index 0c37ec8354f..f3797ed44d4 100644 --- a/spec/javascripts/boards/mock_data.js.es6 +++ b/spec/javascripts/boards/mock_data.js.es6 @@ -26,12 +26,15 @@ const listObjDuplicate = { const BoardsMockData = { 'GET': { - '/test/issue-boards/board/lists{/id}/issues': [{ - title: 'Testing', - iid: 1, - confidential: false, - labels: [] - }] + '/test/issue-boards/board/lists{/id}/issues': { + issues: [{ + title: 'Testing', + iid: 1, + confidential: false, + labels: [] + }], + size: 1 + } }, 'POST': { '/test/issue-boards/board/lists{/id}': listObj |
