|
|
@@ -23,7 +23,7 @@ const CustomBotWithoutProxyIntegrationCard = (props) => {
|
|
|
</div>
|
|
|
|
|
|
<div className="text-center w-25">
|
|
|
- {props.isSetupSlackBot && (
|
|
|
+ {props.isSlackScopeSet && (
|
|
|
<div className="mt-5">
|
|
|
<p className="text-success small">
|
|
|
<i className="fa fa-check mr-1" />
|
|
|
@@ -32,7 +32,7 @@ const CustomBotWithoutProxyIntegrationCard = (props) => {
|
|
|
<hr className="align-self-center admin-border-success border-success"></hr>
|
|
|
</div>
|
|
|
)}
|
|
|
- {!props.isSetupSlackBot && (
|
|
|
+ {!props.isSlackScopeSet && (
|
|
|
<div className="mt-4">
|
|
|
<small
|
|
|
className="text-secondary m-0"
|
|
|
@@ -57,7 +57,7 @@ const CustomBotWithoutProxyIntegrationCard = (props) => {
|
|
|
CustomBotWithoutProxyIntegrationCard.propTypes = {
|
|
|
siteName: PropTypes.string.isRequired,
|
|
|
slackWSNameInWithoutProxy: PropTypes.string,
|
|
|
- isSetupSlackBot: PropTypes.bool.isRequired,
|
|
|
+ isSlackScopeSet: PropTypes.bool.isRequired,
|
|
|
};
|
|
|
|
|
|
export default CustomBotWithoutProxyIntegrationCard;
|