|
|
@@ -61,10 +61,12 @@ const CustomBotWithProxyIntegrationCard = (props) => {
|
|
|
<a className="icon-fw fa fa-repeat fa-2x"></a>
|
|
|
</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>
|