Skip to content

Commit 9194eb9

Browse files
committed
Merge branch 'v9/9.0-rc004' into v9/dev
2 parents a7495d5 + dd72c18 commit 9194eb9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Umbraco.Core/Models/Mapping/TabsAndPropertiesMapper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ protected virtual void MapGenericProperties(IContentBase content, List<Tab<Conte
5959
Id = 0,
6060
Label = LocalizedTextService.Localize("general", "properties"),
6161
Alias = "Generic properties",
62-
Properties = genericproperties
62+
Properties = genericproperties,
63+
Type = PropertyGroupType.Group.ToString()
6364
});
6465

6566
var genericProps = tabs.Single(x => x.Id == 0);

src/Umbraco.Web.UI.Client/src/common/directives/components/users/changepassword.directive.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
var unsubscribe = [];
1717

1818
function resetModel(isNew) {
19-
//the model config will contain an object, if it does not we'll create defaults
19+
//the model config will contain an object, if it does not we'll create defaults
2020
/*
2121
{
2222
hasPassword: true/false,
@@ -80,7 +80,7 @@
8080
}
8181

8282
function onInit() {
83-
//listen for the saved event, when that occurs we'll
83+
//listen for the saved event, when that occurs we'll
8484
//change to changing = false;
8585
unsubscribe.push($scope.$on("formSubmitted", function () {
8686
if (vm.config.disableToggle === false) {
@@ -146,7 +146,7 @@
146146
}
147147
};
148148

149-
angular.module('umbraco.directives').component('changepassword', component);
149+
angular.module('umbraco.directives').component('changePassword', component);
150150

151151

152152
})();

0 commit comments

Comments
 (0)