Skip to content

Commit

Permalink
Merge pull request #625 from shoutem/release/4.4.9
Browse files Browse the repository at this point in the history
Re-create 4.5.1 but 4.4.* compatible
  • Loading branch information
Definitely-Not-Vlad authored Jul 27, 2021
2 parents cda5d7f + c35b164 commit 7189b12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion html/components/SimpleHtml.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class SimpleHtml extends PureComponent {
const nodeStyle = cssStringToObject(styleAttrib);
const source = _.get(firstChild, 'attribs.src', '');

const resolvedNodeStyle = !isValidVideoFormat(source)
const resolvedNodeStyle = isValidVideoFormat(source)
? _.omit(nodeStyle, ['height', 'padding-bottom'])
: nodeStyle;

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shoutem/ui",
"version": "4.4.8",
"version": "4.4.9",
"description": "Styleable set of components for React Native applications",
"scripts": {
"lint": "eslint .",
Expand Down

0 comments on commit 7189b12

Please sign in to comment.