From 8d803bda35716469002152e4ebbf7d2003d10694 Mon Sep 17 00:00:00 2001 From: nsano-rururu Date: Tue, 19 Apr 2022 01:07:04 +0900 Subject: [PATCH] ms_teams_alert_summary to blank --- src/store/config/index.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/store/config/index.js b/src/store/config/index.js index 0cf0e5c6..19c7b93b 100644 --- a/src/store/config/index.js +++ b/src/store/config/index.js @@ -911,13 +911,7 @@ export default { /* MS Teams */ commit('alert/UPDATE_MS_TEAMS_WEBHOOK_URL', config.ms_teams_webhook_url); commit('alert/UPDATE_MS_TEAMS_THEME_COLOR', config.ms_teams_theme_color); - - if (config.ms_teams_alert_summary) { - commit('alert/UPDATE_MS_TEAMS_ALERT_SUMMARY', config.ms_teams_alert_summary); - } else { - commit('alert/UPDATE_MS_TEAMS_ALERT_SUMMARY', 'ElastAlert Message'); - } - + commit('alert/UPDATE_MS_TEAMS_ALERT_SUMMARY', config.ms_teams_alert_summary); commit('alert/UPDATE_MS_TEAMS_ALERT_FIXED_WIDTH', config.ms_teams_alert_fixed_width); commit('alert/UPDATE_MS_TEAMS_PROXY', config.ms_teams_proxy);