[MM-20796] Removed visibility: hidden from MM view when error page was showing (#1127)

This commit is contained in:
Devin Binnie 2019-12-27 04:48:08 -05:00 committed by Guillermo Vayá
parent 81a9e5e028
commit 52da23fafe

View file

@ -323,7 +323,7 @@ export default class MattermostView extends React.Component {
if (this.props.withTab) { if (this.props.withTab) {
classNames.push('mattermostView-with-tab'); classNames.push('mattermostView-with-tab');
} }
if (!this.props.active || this.state.errorInfo) { if (!this.props.active) {
classNames.push('mattermostView-hidden'); classNames.push('mattermostView-hidden');
} }