Skip to content

Commit

Permalink
Revert "Fix paths start element selector (#4662)"
Browse files Browse the repository at this point in the history
This reverts commit 6e65075.
  • Loading branch information
samwinslow authored Jun 9, 2021
1 parent ef2b6ac commit dd701da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function PropertyValue({
const commonInputProps = {
autoFocus: !value && !isMobile(),
style: { width: '100%', ...style },
value: isMultiSelect ? value : input,
value: (isMultiSelect ? value : input) || placeholder,
loading: optionsCache[input] === 'loading',
onSearch: (newInput) => {
setInput(newInput)
Expand Down

0 comments on commit dd701da

Please sign in to comment.