@bytebrand/fe-ui-core 4.2.206 → 4.2.207

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.2.206",
3
+ "version": "4.2.207",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -147,7 +147,7 @@ const VehicleDetailedSidebar: FunctionComponent<IVehicleDetailedSidebarProps> =
147
147
 
148
148
  return (
149
149
  <>
150
- {isFetching ? <div className={styles.detailedInfo}>
150
+ {!isFetching ? <div className={styles.detailedInfo}>
151
151
  <Title {...titleProps} />
152
152
  <Price {...priceProps} />
153
153
  <Price {...priceProps} isSticky={true} />
@@ -174,7 +174,7 @@ const VehicleDetailedSidebar: FunctionComponent<IVehicleDetailedSidebarProps> =
174
174
  {props.children}
175
175
  </div> : <div className={styles.skeletonInfoContainer}><Skeleton /></div>
176
176
  }
177
- {isFetching ? <div>{isAlternativeType &&
177
+ {!isFetching ? <div>{isAlternativeType &&
178
178
  <DealerInfo
179
179
  t={t}
180
180
  infoSections={infoSections}
@@ -186,7 +186,7 @@ const VehicleDetailedSidebar: FunctionComponent<IVehicleDetailedSidebarProps> =
186
186
  />}
187
187
  </div> : <div className={styles.skeletonInfoContainer}><Skeleton /></div>
188
188
  }
189
- {isFetching ? <Hidden xs sm md>
189
+ {!isFetching ? <Hidden xs sm md>
190
190
  <div className={`${styles.detailedInfo} ${styles.highlights}`}>{carLoaded && <Properties {...propertiesProps} />}</div>
191
191
  </Hidden> : <div className={styles.skeletonInfoContainer}><Skeleton /></div>
192
192
  }