monkey-front-core 0.0.443 → 0.0.444
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/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +6 -2
- package/fesm2015/monkey-front-core.mjs +4 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.444.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.443.tgz +0 -0
|
@@ -3332,8 +3332,11 @@ class MonkeyEcxi18nConfigService extends MonkeyEcxCommonsService {
|
|
|
3332
3332
|
try {
|
|
3333
3333
|
const pathName = ['alerts', 'auth', 'register', 'shared'];
|
|
3334
3334
|
const services = pathName?.map((name) => {
|
|
3335
|
+
const url = MonkeyEcxUtils.replaceVariables(environment.urli18nAssets, {
|
|
3336
|
+
name, lang
|
|
3337
|
+
});
|
|
3335
3338
|
return monkeyecxService
|
|
3336
|
-
?.get(
|
|
3339
|
+
?.get(url)
|
|
3337
3340
|
.pipe(take(1))
|
|
3338
3341
|
.toPromise();
|
|
3339
3342
|
});
|