Skip to content

Commit

Permalink
Merge pull request #11121 from umbraco/v8/bugfix/keep-existing-proper…
Browse files Browse the repository at this point in the history
…tygroup-key

Add property group key to save model
  • Loading branch information
bergmania authored Sep 16, 2021
2 parents e056918 + 1baa4cf commit e1333fe
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 e1333fe

Please sign in to comment.