ソースを参照

fix null to ''

zahmis 4 年 前
コミット
ca9b5321a0

+ 1 - 1
src/client/js/components/Admin/SlackIntegration/WithProxyAccordions.jsx

@@ -251,7 +251,7 @@ const MessageBasedOnConnection = (props) => {
     return <p className="text-info text-center my-4">{t('admin:slack_integration.accordion.send_message_to_slack_work_space')}</p>;
   }
 
-  if (logsValue == null) {
+  if (logsValue === '') {
     return <p></p>;
   }