We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de9abf4 commit 635160dCopy full SHA for 635160d
app/controllers/bookmarks/index.js
@@ -42,7 +42,7 @@ export default Controller.extend({
42
// this.set('model', []);
43
// },
44
45
- filteredContent: computed('filterText', 'sortedBookmarks', function() {
+ filteredContent: computed('filterText', 'sortedBookmarks.[]', function() {
46
this.setInitialPaginationItemCount();
47
let filterText = this.filterText.toLowerCase();
48
@@ -60,7 +60,7 @@ export default Controller.extend({
60
}
61
}),
62
63
- paginationActive: computed('paginationItemsPerPage.[]', 'filteredContent', function() {
+ paginationActive: computed('paginationItemsPerPage', 'filteredContent', function() {
64
return this.filteredContent.length > this.paginationItemsPerPage;
65
66
0 commit comments