@momo-kits/swipe 0.0.55-beta.21 → 0.0.56-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SwipeAction.js +1 -5
- package/package.json +1 -1
package/SwipeAction.js
CHANGED
|
@@ -537,11 +537,7 @@ class SwipeAction extends Component {
|
|
|
537
537
|
|
|
538
538
|
renderTitle = (title) => {
|
|
539
539
|
const { actionTextStyle } = this.props;
|
|
540
|
-
return
|
|
541
|
-
<Text.SubTitle style={[styles.text, actionTextStyle]}>
|
|
542
|
-
{title}
|
|
543
|
-
</Text.SubTitle>
|
|
544
|
-
);
|
|
540
|
+
return <Text style={[styles.text, actionTextStyle]}>{title}</Text>;
|
|
545
541
|
};
|
|
546
542
|
|
|
547
543
|
onActionPress = (item, rowIndex) => () => {
|