kaori пре 5 година
родитељ
комит
7d681110da
1 измењених фајлова са 8 додато и 2 уклоњено
  1. 8 2
      src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

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

@@ -112,14 +112,16 @@ const SlackIntegration = (props) => {
       securityControl: 'impossible',
       securityControl: 'impossible',
     },
     },
     customBotWithProxy: {
     customBotWithProxy: {
-      name: t('admin:slack_integration.selecting_bot_types.without_proxy'),
+      name: t('admin:slack_integration.selecting_bot_types.custom_bot'),
+      name2: t('admin:slack_integration.selecting_bot_types.without_proxy'),
       level: t('admin:slack_integration.selecting_bot_types.for_intermediate'),
       level: t('admin:slack_integration.selecting_bot_types.for_intermediate'),
       setUp: 'normal',
       setUp: 'normal',
       multiWSIntegration: 'impossible',
       multiWSIntegration: 'impossible',
       securityControl: 'possible',
       securityControl: 'possible',
     },
     },
     customBotWithoutProxy: {
     customBotWithoutProxy: {
-      name: t('admin:slack_integration.selecting_bot_types.with_proxy'),
+      name: t('admin:slack_integration.selecting_bot_types.custom_bot'),
+      name2: t('admin:slack_integration.selecting_bot_types.with_proxy'),
       level: t('admin:slack_integration.selecting_bot_types.for_advanced'),
       level: t('admin:slack_integration.selecting_bot_types.for_advanced'),
       setUp: 'hard',
       setUp: 'hard',
       multiWSIntegration: 'possible',
       multiWSIntegration: 'possible',
@@ -148,6 +150,10 @@ const SlackIntegration = (props) => {
               <h3 className={`card-header mb-0 py-3 text-center ${currentBotType === `${key}` ? 'bg-primary text-light' : ''}`}>
               <h3 className={`card-header mb-0 py-3 text-center ${currentBotType === `${key}` ? 'bg-primary text-light' : ''}`}>
                 <span className="mr-2">
                 <span className="mr-2">
                   {value.name}
                   {value.name}
+
+                </span>
+                <span className="supplementary-desc mr-2">
+                  {value.name2}
                 </span>
                 </span>
 
 
                 {key === 'officialBot' ? renderRecommendedBadge() : ''}
                 {key === 'officialBot' ? renderRecommendedBadge() : ''}