diff --git a/scripts/apps/users/directives/UserPreferencesDirective.ts b/scripts/apps/users/directives/UserPreferencesDirective.ts index 49fba616da..e020b9741d 100644 --- a/scripts/apps/users/directives/UserPreferencesDirective.ts +++ b/scripts/apps/users/directives/UserPreferencesDirective.ts @@ -420,7 +420,7 @@ export function UserPreferencesDirective( }); } - p[key] = _.extend(val, scope.preferences[key]); + p[key] = _.merge(val, scope.preferences[key]); }); return p; } diff --git a/scripts/apps/users/views/user-preferences.html b/scripts/apps/users/views/user-preferences.html index 9a5d598695..685ac69741 100644 --- a/scripts/apps/users/views/user-preferences.html +++ b/scripts/apps/users/views/user-preferences.html @@ -19,6 +19,7 @@ +