From b62e82c7bc26a80c855e38812a954af183ac3640 Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Wed, 3 Oct 2018 01:41:59 +0000 Subject: [PATCH] Fix safari dialog --- src/assets/stylesheets/info-dialog.scss | 2 +- src/react-components/ui-root.js | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/assets/stylesheets/info-dialog.scss b/src/assets/stylesheets/info-dialog.scss index 447500bef..d724730d4 100644 --- a/src/assets/stylesheets/info-dialog.scss +++ b/src/assets/stylesheets/info-dialog.scss @@ -5,7 +5,7 @@ left: 0; position: fixed; color: black; - z-index: 2; + z-index: 10; } .dialog { diff --git a/src/react-components/ui-root.js b/src/react-components/ui-root.js index e3a646a2f..062293f8f 100644 --- a/src/react-components/ui-root.js +++ b/src/react-components/ui-root.js @@ -526,25 +526,25 @@ class UIRoot extends Component { this.setState({ dialog: null }); }; - showHelpDialog() { + showHelpDialog = () => { this.setState({ dialog: <HelpDialog onClose={this.closeDialog} /> }); - } + }; - showSafariDialog() { + showSafariDialog = () => { this.setState({ dialog: <SafariDialog onClose={this.closeDialog} /> }); - } + }; - showInviteTeamDialog() { + showInviteTeamDialog = () => { this.setState({ dialog: <InviteTeamDialog hubChannel={this.props.hubChannel} onClose={this.closeDialog} /> }); - } + }; - showCreateObjectDialog() { + showCreateObjectDialog = () => { this.setState({ dialog: <CreateObjectDialog onCreate={this.createObject} onClose={this.closeDialog} /> }); - } + }; - showWebVRRecommendDialog() { + showWebVRRecommendDialog = () => { this.setState({ dialog: <WebVRRecommendDialog onClose={this.closeDialog} /> }); - } + }; renderExitedPane = () => { let subtitle = null; -- GitLab