Просмотр исходного кода

Don't show modal if no bot is registered

Steven Fukase 5 лет назад
Родитель
Сommit
45c9eb2209

+ 4 - 0
src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

@@ -15,6 +15,10 @@ const SlackIntegration = () => {
     if (clickedBotType === currentBotType) {
       return;
     }
+    if (currentBotType === null) {
+      setSelectedBotType(clickedBotType);
+      return;
+    }
     setSelectedBotType(clickedBotType);
     setmodalVisibility(true);
   };