فهرست منبع

if slack token is null, convert to ''

yusuketk 6 سال پیش
والد
کامیت
f5b78a0fe4
1فایلهای تغییر یافته به همراه7 افزوده شده و 7 حذف شده
  1. 7 7
      src/client/js/services/AdminNotificationContainer.js

+ 7 - 7
src/client/js/services/AdminNotificationContainer.js

@@ -47,13 +47,13 @@ export default class AdminNotificationContainer extends Container {
       const { notificationParams } = response.data;
 
       this.setState({
-        webhookUrl: notificationParams.webhookUrl,
-        isIncomingWebhookPrioritized: notificationParams.isIncomingWebhookPrioritized,
-        slackToken: notificationParams.slackToken,
-        userNotifications: notificationParams.userNotifications,
-        isNotificationForOwnerPageEnabled: notificationParams.isNotificationForOwnerPageEnabled,
-        isNotificationForGroupPageEnabled: notificationParams.isNotificationForGroupPageEnabled,
-        globalNotifications: notificationParams.globalNotifications,
+        webhookUrl: notificationParams.webhookUrl || '',
+        isIncomingWebhookPrioritized: notificationParams.isIncomingWebhookPrioritized || false,
+        slackToken: notificationParams.slackToken || '',
+        userNotifications: notificationParams.userNotifications || [],
+        isNotificationForOwnerPageEnabled: notificationParams.isNotificationForOwnerPageEnabled || false,
+        isNotificationForGroupPageEnabled: notificationParams.isNotificationForGroupPageEnabled || false,
+        globalNotifications: notificationParams.globalNotifications || [],
       });
 
     }