From b0ca99d1f49b8fe68afa588cbadc1f6d0a413aeb Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Fri, 1 Jul 2022 14:38:16 +0200 Subject: [PATCH] UI: Add another tab for custom PBAs --- .../components/configuration-components/ConfigurationTabs.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monkey/monkey_island/cc/ui/src/components/configuration-components/ConfigurationTabs.js b/monkey/monkey_island/cc/ui/src/components/configuration-components/ConfigurationTabs.js index dbdb4b5c6..6df2f088b 100644 --- a/monkey/monkey_island/cc/ui/src/components/configuration-components/ConfigurationTabs.js +++ b/monkey/monkey_island/cc/ui/src/components/configuration-components/ConfigurationTabs.js @@ -2,6 +2,7 @@ const CONFIGURATION_TABS = { PROPAGATION: 'propagation', PAYLOADS: 'payloads', PBA: 'post_breach_actions', + CUSTOM_PBA: 'custom_pbas', CREDENTIALS_COLLECTORS: 'credential_collectors', ADVANCED: 'advanced' }; @@ -10,6 +11,7 @@ const advancedModeConfigTabs = [ CONFIGURATION_TABS.PROPAGATION, CONFIGURATION_TABS.PAYLOADS, CONFIGURATION_TABS.PBA, + CONFIGURATION_TABS.CUSTOM_PBA, CONFIGURATION_TABS.CREDENTIALS_COLLECTORS, CONFIGURATION_TABS.ADVANCED ];