From f723546e6b9af2322b83c14c048f33b786cf9625 Mon Sep 17 00:00:00 2001 From: ladeirarodolfo <39910206+ladeirarodolfo@users.noreply.github.com> Date: Mon, 16 Sep 2019 11:26:59 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Fix=20issue=20on=20not=20?= =?UTF-8?q?loading=20gcloud=20(#919)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed issue on not loading gcloud. Error on name variable declaration --- platform/viewer/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/viewer/src/App.js b/platform/viewer/src/App.js index d20504700..30585345d 100644 --- a/platform/viewer/src/App.js +++ b/platform/viewer/src/App.js @@ -83,7 +83,7 @@ class App extends Component { constructor(props) { super(props); - this.appConfig = props; + this._appConfig = props; const { servers, extensions, hotkeys, oidc } = props; this.initUserManager(oidc);