@bytebrand/fe-ui-core 4.2.170 → 4.2.171

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.170",
3
+ "version": "4.2.171",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -14,7 +14,6 @@ import FilterBlock from '../../../SearchFilters/common/FilterBlock/FilterBlock';
14
14
  import styles from './FiltersContainer.styl';
15
15
  import AlternativeID from '../../../SearchFilters/filters/AlternativeID';
16
16
  import MaterialField from '../../../_common/MaterialField/MaterialField';
17
- import { toJS } from 'mobx';
18
17
 
19
18
  type PathParamsType = {
20
19
  location?: any;
@@ -395,7 +394,7 @@ class FiltersContainer extends React.Component<IFiltersContainerProps, {}> {
395
394
  if (value.length === 6 || !value) {
396
395
  this.onFilterChange('VEHICLE_ID', upperCaseValue);
397
396
  changeFilterValue('VEHICLE_ID', upperCaseValue);
398
- search(toJS(filters), 1, true);
397
+ search(filters, 1, true);
399
398
  }
400
399
  };
401
400
 
@@ -403,7 +402,7 @@ class FiltersContainer extends React.Component<IFiltersContainerProps, {}> {
403
402
  const { t, onAlternativeRedirect, isAlternative, isErrorAlternativeField, Link, locationSearch, successTransition, filters } = this.props;
404
403
  const paramsFromQuery = qs.parse(location.search, { ignoreQueryPrefix: true });
405
404
 
406
- const { VEHICLE_ID } = toJS(filters);
405
+ const { VEHICLE_ID } = filters;
407
406
 
408
407
  const alternativeIDProps = {
409
408
  t,