Skip to content
Snippets Groups Projects
Unverified Commit 5117a252 authored by Dalton's avatar Dalton Committed by GitHub
Browse files

re-enable search for category and location/* params (#15556)

parent 3423b36e
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ export default class ParameterFieldWidget extends Component<*, Props, State> {
const savedValue = normalizeValue(this.props.value);
const unsavedValue = normalizeValue(this.state.value);
const isEqualsOp = isEqualsOperator(operator);
const disableSearch = isFuzzyOperator(operator);
const disableSearch = operator && isFuzzyOperator(operator);
const defaultPlaceholder = isFocused
? ""
: this.props.placeholder || t`Enter a value...`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment