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

Fix siteInfo dialog width bug #10931

Merged
merged 1 commit into from
Sep 13, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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