Skip to content

Commit

Permalink
Add property group key to save model
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldbarendse committed Sep 16, 2021
1 parent 09db4ed commit 1baa4cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
});
saveModel.groups = _.map(realGroups, function (g) {

var saveGroup = _.pick(g, 'inherited', 'id', 'sortOrder', 'name', 'alias', 'type');
var saveGroup = _.pick(g, 'inherited', 'id', 'sortOrder', 'name', 'key', 'alias', 'type');

var realProperties = _.reject(g.properties, function (p) {
//do not include these properties
Expand Down

0 comments on commit 1baa4cf

Please sign in to comment.