feat(messages): add type button to filter message box

#10
This commit is contained in:
OldHawk
2017-12-15 14:36:52 +08:00
parent 2458de790e
commit 179e2d91a2
10 changed files with 133 additions and 17 deletions

View File

@@ -117,7 +117,7 @@
vm.getCountUnread = function () {
if (Authentication.user) {
MessagesService.countUnread(function (data) {
vm.unreadCount = data.countFrom + data.countTo + data.countAdmin;
vm.unreadCount = data.countAll;
});
}
};