From ec6867dc8b364c84d6c88273a379f004ac158005 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 24 Aug 2017 12:31:29 +0100 Subject: [PATCH] Fix React crying on machines without internet due to return undefined --- src/components/views/elements/ManageIntegsButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/elements/ManageIntegsButton.js b/src/components/views/elements/ManageIntegsButton.js index a5f6eb7982..ac562a7c20 100644 --- a/src/components/views/elements/ManageIntegsButton.js +++ b/src/components/views/elements/ManageIntegsButton.js @@ -75,7 +75,7 @@ export default class ManageIntegsButton extends React.Component { } render() { - let integrationsButton; + let integrationsButton =
; let integrationsError; if (this.scalarClient !== null) { if (this.state.showIntegrationsError && this.state.scalarError) {