Browse Source

Fix Filter Handling

pull/5027/head
Dan 10 months ago
parent
commit
0d4dd45e64
  1. 6
      apps/api/src/app/user/user.controller.ts

6
apps/api/src/app/user/user.controller.ts

@ -158,6 +158,12 @@ export class UserController {
}
}
for (const key in data) {
if (data[key] !== false && data[key] !== null) {
userSettings[key] = data[key];
}
}
return this.userService.updateUserSetting({
emitPortfolioChangedEvent,
userSettings,

Loading…
Cancel
Save