From 4d8258ddbdaad8b757a535807f05941c6197d799 Mon Sep 17 00:00:00 2001 From: Shreya Date: Tue, 6 Jul 2021 16:23:27 +0530 Subject: [PATCH] cc: Change order of report tab imports to match the order in which they're shown --- monkey/monkey_island/cc/ui/src/components/pages/ReportPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/monkey_island/cc/ui/src/components/pages/ReportPage.js b/monkey/monkey_island/cc/ui/src/components/pages/ReportPage.js index 6548f5de1..86b73dbb4 100644 --- a/monkey/monkey_island/cc/ui/src/components/pages/ReportPage.js +++ b/monkey/monkey_island/cc/ui/src/components/pages/ReportPage.js @@ -4,9 +4,9 @@ import {Col, Nav} from 'react-bootstrap'; import AuthComponent from '../AuthComponent'; import MustRunMonkeyWarning from '../report-components/common/MustRunMonkeyWarning'; import AttackReport from '../report-components/AttackReport'; -import RansomwareReport from '../report-components/RansomwareReport'; import SecurityReport from '../report-components/SecurityReport'; import ZeroTrustReport from '../report-components/ZeroTrustReport'; +import RansomwareReport from '../report-components/RansomwareReport'; import {extractExecutionStatusFromServerResponse} from '../report-components/common/ExecutionStatus'; import MonkeysStillAliveWarning from '../report-components/common/MonkeysStillAliveWarning';