Shun Miyazawa 4 лет назад
Родитель
Сommit
9295720f2f

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

@@ -61,10 +61,12 @@ const CustomBotWithProxyIntegrationCard = (props) => {
             <a className="icon-fw fa fa-repeat fa-2x"></a>
             <a className="icon-fw fa fa-repeat fa-2x"></a>
           </div>
           </div>
         </div>
         </div>
-        <div className="card-body p-4 m-3 text-center">
-          <div className={`mb-3 border p-2 mx-3 ${props.growiApp.active ? 'bg-primary text-light' : 'border text-primary'}`}>
-            {props.growiApp.name}
-          </div>
+        <div className="card-body text-center">
+          {Object.keys(props.growiApp).length > 0 && (
+            <div className={`mt-5 border p-2 mx-3 ${props.growiApp.active ? 'bg-primary text-light' : 'border text-primary'}`}>
+              {props.growiApp.name}
+            </div>
+          )}
         </div>
         </div>
       </div>
       </div>
     </div>
     </div>