diff --git a/src/Select.js b/src/Select.js index 63afbad2e2..198c2c9ef3 100644 --- a/src/Select.js +++ b/src/Select.js @@ -1204,6 +1204,7 @@ export default class Select extends Component { key={this.getOptionValue(opt)} removeProps={{ onClick: () => this.removeValue(opt), + onTouchEnd: () => this.removeValue(opt), onMouseDown: e => { e.preventDefault(); e.stopPropagation(); diff --git a/src/components/MultiValue.js b/src/components/MultiValue.js index ee2bfdbb2f..6d1133eb5f 100644 --- a/src/components/MultiValue.js +++ b/src/components/MultiValue.js @@ -15,6 +15,7 @@ export type ValueProps = LabelProps & { isFocused: boolean, isDisabled: boolean, removeProps: { + onTouchEnd: any => void, onClick: any => void, onMouseDown: any => void, }, @@ -56,6 +57,7 @@ export type MultiValueRemoveProps = CommonProps & { children: Node, innerProps: any, removeProps: { + onTouchEnd: any => void, onClick: any => void, onMouseDown: any => void, },