Files
mattermost-mobile/patches/react-native-button+3.1.0.patch
Elias Nahum ef2c12e954 Update Dependencies (#7409)
* dev dependencies

* update deps

* update wdb

* update more deps

* update detox deps

* update logs for database batch

* fix jest setup
2023-06-21 13:40:23 -04:00

37 lines
1.3 KiB
Diff

diff --git a/node_modules/react-native-button/Button.js b/node_modules/react-native-button/Button.js
index 05fa1e6..dc9c781 100644
--- a/node_modules/react-native-button/Button.js
+++ b/node_modules/react-native-button/Button.js
@@ -74,19 +74,19 @@ export default class Button extends Component {
}
return (
- <View style={containerStyle}>
- <TouchableNativeFeedback
- {...touchableProps}
- style={{flex: 1}}
- testID={this.props.testID}
- accessibilityLabel={this.props.accessibilityLabel}
- accessibilityRole="button"
- background={background}>
- <View style={{padding: padding}}>
- {this._renderGroupedChildren()}
+ <TouchableNativeFeedback
+ {...touchableProps}
+ style={{flex: 1}}
+ testID={this.props.testID}
+ accessibilityLabel={this.props.accessibilityLabel}
+ accessibilityRole="button"
+ background={background}>
+ <View style={containerStyle}>
+ <View style={{padding: padding}}>
+ {this._renderGroupedChildren()}
+ </View>
</View>
- </TouchableNativeFeedback>
- </View>
+ </TouchableNativeFeedback>
);
}
}