ctt-babylon 0.9.6 → 0.9.7
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/ctt-babylon.mjs
CHANGED
|
@@ -2107,7 +2107,6 @@ class MapperService {
|
|
|
2107
2107
|
return bodyMapped;
|
|
2108
2108
|
}
|
|
2109
2109
|
mapGlobals(component) {
|
|
2110
|
-
console.log('mapGlobal - component completo:', component);
|
|
2111
2110
|
const { props } = component;
|
|
2112
2111
|
//return
|
|
2113
2112
|
let result = {
|
|
@@ -2128,7 +2127,6 @@ class MapperService {
|
|
|
2128
2127
|
image: this.getImageResponsive(props?.multimedia?.advantagesimage?.[0], false),
|
|
2129
2128
|
rooms: this.mapRoomDetails(props?.rooms),
|
|
2130
2129
|
};
|
|
2131
|
-
console.log('result', result);
|
|
2132
2130
|
return result;
|
|
2133
2131
|
}
|
|
2134
2132
|
mapAdvantagesGlobal(advantages) {
|
|
@@ -2213,7 +2211,9 @@ class MapperService {
|
|
|
2213
2211
|
})
|
|
2214
2212
|
.map((svc) => ({
|
|
2215
2213
|
name: svc.name,
|
|
2216
|
-
icon: svc.class
|
|
2214
|
+
icon: svc.class
|
|
2215
|
+
? `icon-${svc.class}`
|
|
2216
|
+
: undefined,
|
|
2217
2217
|
}))
|
|
2218
2218
|
: [],
|
|
2219
2219
|
}));
|