We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56530d commit b203343Copy full SHA for b203343
Libraries/Experimental/SwipeableRow/SwipeableListView.js
@@ -178,7 +178,7 @@ class SwipeableListView extends React.Component {
178
_renderRow = (rowData: Object, sectionID: string, rowID: string): React.Element<any> => {
179
const slideoutView = this.props.renderQuickActions(rowData, sectionID, rowID);
180
181
- // If renderRowSlideout is unspecified or returns falsey, don't allow swipe
+ // If renderQuickActions is unspecified or returns falsey, don't allow swipe
182
if (!slideoutView) {
183
return this.props.renderRow(rowData, sectionID, rowID);
184
}
0 commit comments