Skip to content

Commit

Permalink
Merge pull request #623 from shoutem/hotfix/4.5.1
Browse files Browse the repository at this point in the history
Hotfix/4.5.1
  • Loading branch information
Definitely-Not-Vlad authored Jul 27, 2021
2 parents 2f86c08 + e800690 commit 67e84d1
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.5.0",
"version": "4.5.1",
"description": "Styleable set of components for React Native applications",
"scripts": {
"lint": "eslint .",
Expand Down

0 comments on commit 67e84d1

Please sign in to comment.