@bytebrand/fe-ui-core 4.1.61 → 4.1.63

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.1.61",
3
+ "version": "4.1.63",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -125,7 +125,7 @@ const RangeControlled = ({
125
125
  const toProps = {
126
126
  size: 'custom',
127
127
  value: to ? to : null,
128
- label: `${t('filters.from')} ${unit ? unit : '€'}`,
128
+ label: `${t('filters.to')} ${unit ? unit : '€'}`,
129
129
  onChange: (value: any) => onDropDownChange('to', value),
130
130
  items: getOptions(sliceMoreThan(getDropdownRange(name), from))
131
131
  };
@@ -53,7 +53,7 @@ const ManageCookieModal = ({ onClearModalState }) => {
53
53
  };
54
54
 
55
55
  const onAccept = (value: object) => {
56
- localStorage.setItem('cookieConfig', JSON.stringify( value || ));
56
+ localStorage.setItem('cookieConfig', JSON.stringify( value || {}));
57
57
  onClearModalState();
58
58
  };
59
59