Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix siteInfo dialog width bug
Browse files Browse the repository at this point in the history
Fixes #10930

Auditors:

Test Plan:
1. Open https://mixed-script.badssl.com/
2. Click the lock icon
3. Make sure the width of dialog is 500px
  • Loading branch information
Suguru Hirahara authored and NejcZdovc committed Sep 13, 2017
1 parent cbea3e0 commit 8aca32f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/renderer/components/main/siteInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ class SiteInfo extends React.Component {
className={cx({
[css(commonStyles.flyoutDialog)]: true,
[css(styles.siteInfo__wrapper)]: true,
[css(styles.siteInfo__wrapper__large)]: (this.isBlockedRunInsecureContent || this.runInsecureContent)
[css(styles.siteInfo__wrapper__large)]: (this.props.isBlockedRunInsecureContent || this.props.runInsecureContent)
})}>
{
this.secureIcon
Expand Down

0 comments on commit 8aca32f

Please sign in to comment.