selectedItem: toOption()

in src/components/view/Filter/Filter.tsx [164:175]


      selectedItem: toOption(VALUE_KEY),
      filterValues: [],
    }));
    this.emitValue(this.props.selectedField, value, []);
  };

  onKeyPress = (e: any) => {
    if (
      e.key === 'Backspace' ||
      e.key === 'Delete' ||
      (e.key === '-' && (e.target.value == null || (!e.target.value.includes('-') && e.target.selectionStart === 0)))
    ) {