UX: reduce show dismiss.. at top of unread/new to 15

Previously we would require 30 unread or new topic to show the button at the top.
This commit is contained in:
Sam Saffron 2018-12-11 14:11:54 +11:00
parent 7977b09025
commit bb4ef644bf
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ const controllerOpts = {
return (
(this.isFilterPage(this.get("model.filter"), "new") ||
this.isFilterPage(this.get("model.filter"), "unread")) &&
this.get("model.topics.length") >= 30
this.get("model.topics.length") >= 15
);
}.property("model.filter", "model.topics.length"),