Explorar o código

Added line breaks for readability

Steven Fukase %!s(int64=4) %!d(string=hai) anos
pai
achega
8c0ed558ae

+ 12 - 2
src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

@@ -124,7 +124,12 @@ const SlackIntegration = (props) => {
 
 
   switch (currentBotType) {
   switch (currentBotType) {
     case 'officialBot':
     case 'officialBot':
-      settingsComponent = <OfficialBotSettings slackAppIntegrations={slackAppIntegrations} proxyServerUri={proxyServerUri} />;
+      settingsComponent = (
+        <OfficialBotSettings
+          slackAppIntegrations={slackAppIntegrations}
+          proxyServerUri={proxyServerUri}
+        />
+      );
       break;
       break;
     case 'customBotWithoutProxy':
     case 'customBotWithoutProxy':
       settingsComponent = (
       settingsComponent = (
@@ -145,7 +150,12 @@ const SlackIntegration = (props) => {
       );
       );
       break;
       break;
     case 'customBotWithProxy':
     case 'customBotWithProxy':
-      settingsComponent = <CustomBotWithProxySettings slackAppIntegrations={slackAppIntegrations} proxyServerUri={proxyServerUri} />;
+      settingsComponent = (
+        <CustomBotWithProxySettings
+          slackAppIntegrations={slackAppIntegrations}
+          proxyServerUri={proxyServerUri}
+        />
+      );
       break;
       break;
   }
   }