Skip to content
This repository has been archived by the owner on Nov 23, 2017. It is now read-only.

Commit

Permalink
fixed missed new groups
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Schult committed Dec 2, 2015
1 parent 19ed2b0 commit d16558b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/public/js/model/group.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function Group(group, poolClients) {
isAvailable: {
enumerable: true,
get: function () {
return (this.isUndefined && clients.length > 0 && stateStorage.show) || clients.length > 0;
return (this.id === this.title) || (this.isUndefined && clients.length > 0 && stateStorage.show) || clients.length > 0;
}
}
});
Expand Down

0 comments on commit d16558b

Please sign in to comment.