Skip to content

Commit b4649a0

Browse files
committed
version bump
2 parents a799c5b + a9d2352 commit b4649a0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esteemapp/react-native-render-html",
3-
"version": "4.1.3",
3+
"version": "4.1.4",
44
"author": "eSteemApp",
55
"license": "BSD-2-Clause",
66
"repository": "https://github.com/eSteemApp/react-native-render-html",

src/HTML.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ export default class HTML extends PureComponent {
4848
baseFontStyle: PropTypes.object.isRequired,
4949
textSelectable: PropTypes.bool,
5050
renderersProps: PropTypes.object,
51-
allowFontScaling: PropTypes.bool
51+
allowFontScaling: PropTypes.bool,
52+
disableRerenders: PropTypes.bool,
5253
}
5354

5455
static defaultProps = {
@@ -65,7 +66,8 @@ export default class HTML extends PureComponent {
6566
tagsStyles: {},
6667
classesStyles: {},
6768
textSelectable: false,
68-
allowFontScaling: true
69+
allowFontScaling: true,
70+
disableRerenders: false,
6971
}
7072

7173
constructor (props) {

0 commit comments

Comments
 (0)