Skip to content

Commit

Permalink
fix(users): User tile hide condition correction
Browse files Browse the repository at this point in the history
User tiles were not showing when they were meant to.
  • Loading branch information
atruskie committed Feb 10, 2017
1 parent 6b4d616 commit 247c2ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/users/userTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ angular
return;
}

if(!$ctrl.resource[userKey] || $ctrl.resource[dateKey]) {
if(!$ctrl.resource[userKey] || !$ctrl.resource[dateKey]) {
$ctrl.show = false;
return;
}
Expand Down

0 comments on commit 247c2ae

Please sign in to comment.