Change all onTouchTap to onClick

This commit is contained in:
fragosti
2018-08-24 15:59:14 -07:00
parent 103e1aa250
commit ad161a973e
13 changed files with 18 additions and 18 deletions

View File

@@ -73,12 +73,12 @@ export class AssetPicker extends React.Component<AssetPickerProps, AssetPickerSt
<FlatButton
key="noTracking"
label="No"
onTouchTap={this._onTrackConfirmationRespondedAsync.bind(this, false)}
onClick={this._onTrackConfirmationRespondedAsync.bind(this, false)}
/>,
<FlatButton
key="yesTrack"
label="Yes"
onTouchTap={this._onTrackConfirmationRespondedAsync.bind(this, true)}
onClick={this._onTrackConfirmationRespondedAsync.bind(this, true)}
/>,
],
},