zahmis 4 лет назад
Родитель
Сommit
ba29bdc7f1
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/client/js/components/Admin/SlackIntegration/IntegrationStatus.jsx

+ 2 - 2
src/client/js/components/Admin/SlackIntegration/IntegrationStatus.jsx

@@ -50,7 +50,7 @@ const IntegrationSuccess = (props) => {
 IntegrationSuccess.propTypes = {
 IntegrationSuccess.propTypes = {
   errorCount: PropTypes.number.isRequired,
   errorCount: PropTypes.number.isRequired,
   totalCount: PropTypes.number.isRequired,
   totalCount: PropTypes.number.isRequired,
-  isWithoutProxy: PropTypes.bool,
+  isWithoutProxy: PropTypes.bool.isRequired,
 };
 };
 
 
 
 
@@ -99,7 +99,7 @@ const IntegrationFailed = (props) => {
 IntegrationFailed.propTypes = {
 IntegrationFailed.propTypes = {
   errorCount: PropTypes.number.isRequired,
   errorCount: PropTypes.number.isRequired,
   totalCount: PropTypes.number.isRequired,
   totalCount: PropTypes.number.isRequired,
-  isWithoutProxy: PropTypes.bool,
+  isWithoutProxy: PropTypes.bool.isRequired,
 };
 };