Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
yiminghe committed Jun 26, 2017
1 parent edff1f4 commit 4b17846
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "rmc-picker",
"version": "3.10.6",
"version": "3.10.7",
"description": "React Mobile Picker Component(web and react-native)",
"keywords": [
"react",
Expand Down Expand Up @@ -46,7 +46,6 @@
"babel-runtime": "6.x",
"classnames": "2.x",
"create-react-class": "15.x",
"object-assign": "4.x",
"rc-dialog": "^6.4.0",
"rc-touchable": "^1.0.2",
"zscroller": "~0.3.0"
Expand Down
8 changes: 4 additions & 4 deletions src/PopupStyles.tsx
@@ -1,5 +1,4 @@
import {StyleSheet} from 'react-native';
import assign from 'object-assign';
import { StyleSheet } from 'react-native';

const textStyle = {
color: '#0ae',
Expand Down Expand Up @@ -28,9 +27,10 @@ const styles = StyleSheet.create({
flex: 1,
},
actionText: textStyle,
title: assign({}, textStyle, {
title: {
...textStyle,
color: '#666',
}),
},
});

export default styles;

0 comments on commit 4b17846

Please sign in to comment.