Remove default null value for parent param

This commit is contained in:
Alfredo Sumaran 2017-05-31 20:52:43 -05:00
parent bf65c49c69
commit 0a1b196643
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export default class GroupsStore {
this.state.pageInfo = {};
}
setGroups(rawGroups, parent = null) {
setGroups(rawGroups, parent) {
const parentGroup = parent;
const tree = this.buildTree(rawGroups, parentGroup);