monkey-front-components 0.0.314 → 0.0.317
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/components/shared/products/providers/products.model.mjs +8 -2
- package/fesm2015/monkey-front-components.mjs +7 -1
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +7 -1
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/monkey-front-components-0.0.317.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-components-0.0.314.tgz +0 -0
|
@@ -2632,7 +2632,13 @@ class ProductsModel {
|
|
|
2632
2632
|
SUPPLY_CHAIN: 'SCF',
|
|
2633
2633
|
SALES_FINANCE: 'SF'
|
|
2634
2634
|
}[product];
|
|
2635
|
-
|
|
2635
|
+
let handled = 'https://assets.monkey.exchange';
|
|
2636
|
+
if (domain === '.monkey.credit') {
|
|
2637
|
+
handled = `/credit/wl/${token}/login.svg`;
|
|
2638
|
+
}
|
|
2639
|
+
else {
|
|
2640
|
+
handled = `/${sufix}/${country}/wl/${token}/login.svg`;
|
|
2641
|
+
}
|
|
2636
2642
|
this.logo = handled.toLowerCase();
|
|
2637
2643
|
}
|
|
2638
2644
|
}
|