@bytebrand/fe-ui-core 4.2.105 → 4.2.106

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.105",
3
+ "version": "4.2.106",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -150,6 +150,7 @@ class Power extends React.Component<IPowerProps, {}> {
150
150
  export default memo(Power, (prevProps: any, nextProps: any) => {
151
151
  return prevProps.controls.from === nextProps.controls.from &&
152
152
  prevProps.controls.to === nextProps.controls.to &&
153
+ prevProps.t === nextProps.t &&
153
154
  prevProps.controls.type === nextProps.controls.type &&
154
155
  prevProps.values.from === nextProps.values.from &&
155
156
  prevProps.values.to === nextProps.values.to &&