Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 8146e09

Browse files
authored
Merge pull request #62 from peterp/pp-small-updates
Pp small updates
2 parents 49ae7ff + 77cb011 commit 8146e09

File tree

6 files changed

+22
-240
lines changed

6 files changed

+22
-240
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__tests__

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Federico Martín Alconada Verzini (https://github.com/fedealconada)
22
Havens (https://github.com/havenS)
33
Dajaffe (https://github.com/dajaffe)
44
Michael O'Connor Havens (https://github.com/seeocon)
5+
"abscess" (https://github.com/seeocon)

Tags/Input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const Input = (props) => {
2626
/>
2727
</View>
2828
);
29-
29+
3030
};
3131

32-
export {Input};
32+
export { Input };
3333
export default Input;

Tags/index.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ class Tags extends React.Component {
109109
return renderTag(tagProps);
110110
})}
111111

112-
{!readonly
113-
&& maxNumberOfTags > this.state.tags.length
114-
&&
115-
<Input
116-
value={this.state.text}
117-
onChangeText={this.onChangeText}
118-
onSubmitEditing={this.onSubmitEditing}
119-
{...this.props}
120-
/>
112+
{!readonly
113+
&& maxNumberOfTags > this.state.tags.length
114+
&&
115+
<Input
116+
value={this.state.text}
117+
onChangeText={this.onChangeText}
118+
onSubmitEditing={this.onSubmitEditing}
119+
{...this.props}
120+
/>
121121
}
122122

123123
</View>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
4444
}
4545
}
46-
}
46+
}

0 commit comments

Comments
 (0)