@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
|
@@ -1212,7 +1212,8 @@ class AppState {
|
|
|
1212
1212
|
this.intercom.inbounds.subscribe((t) => { this.handleInboundMessage(t); });
|
|
1213
1213
|
}
|
|
1214
1214
|
async hookPreferences() {
|
|
1215
|
-
let
|
|
1215
|
+
let originalRes = await firstValueFrom(this.prefs.getItem(this.PREFS_DISABLE_EFFECTS));
|
|
1216
|
+
let effectsOff = originalRes?.value || false;
|
|
1216
1217
|
this.graphicEffects.set(!effectsOff);
|
|
1217
1218
|
}
|
|
1218
1219
|
getActiveJaceModules() {
|