Преглед изворни кода

Don't show modal if no bot is registered

Steven Fukase пре 5 година
родитељ
комит
45c9eb2209
1 измењених фајлова са 4 додато и 0 уклоњено
  1. 4 0
      src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

+ 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);
   };