Skip to content

Commit

Permalink
Fixed criterion selection bug. Fixes #1007 (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed Apr 13, 2017
1 parent 1b7a6e5 commit a1438e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,9 +660,9 @@ define([
items = this._client.getAllMetaNodes()
.filter(node => node.isTypeOf(criterionId));

return items.map(id => {
return items.map(node => {
return {
node: this._getObjectDescriptor(id)
node: this._getObjectDescriptor(node.getId())
};
});
} else {
Expand Down

0 comments on commit a1438e2

Please sign in to comment.