@esfaenza/core 19.2.155 → 19.2.157
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/esfaenza-core-components.mjs +2 -2
- package/fesm2022/esfaenza-core-components.mjs.map +1 -1
- package/fesm2022/esfaenza-core-services.mjs +2 -1
- package/fesm2022/esfaenza-core-services.mjs.map +1 -1
- package/fesm2022/esfaenza-core.mjs +2 -2
- package/fesm2022/esfaenza-core.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -1830,7 +1830,7 @@ class UserInfosComponent extends BaseComponent {
|
|
|
1830
1830
|
this.profile = profile;
|
|
1831
1831
|
this.prefs = prefs;
|
|
1832
1832
|
this.PREFS_DISABLE_EFFECTS = "PREFS_DISABLE_EFFECTS";
|
|
1833
|
-
this.GraphicEffectsDeactivated =
|
|
1833
|
+
this.GraphicEffectsDeactivated = false;
|
|
1834
1834
|
this.UpdateProfilePictureDTO = null;
|
|
1835
1835
|
this.UpdateRecoverySettingsDTO = null;
|
|
1836
1836
|
this.UpdatePasswordDTO = null;
|
|
@@ -1841,7 +1841,7 @@ class UserInfosComponent extends BaseComponent {
|
|
|
1841
1841
|
}
|
|
1842
1842
|
async effectsActiveChanged() {
|
|
1843
1843
|
this._state.graphicEffects.set(!this.GraphicEffectsDeactivated);
|
|
1844
|
-
await firstValueFrom(this.prefs.setItem(this.PREFS_DISABLE_EFFECTS, this.GraphicEffectsDeactivated));
|
|
1844
|
+
await firstValueFrom(this.prefs.setItem(this.PREFS_DISABLE_EFFECTS, { value: this.GraphicEffectsDeactivated }));
|
|
1845
1845
|
}
|
|
1846
1846
|
async getAccountDetails() {
|
|
1847
1847
|
// Recupero le informazioni Account partendo dalla identity
|