diff --git a/src/assets/css/components/index.scss b/src/assets/css/components/index.scss
index 82fa535f..ad16c89a 100644
--- a/src/assets/css/components/index.scss
+++ b/src/assets/css/components/index.scss
@@ -19,6 +19,7 @@
@import './views/entityExplorer/entityList/card';
@import './views/entityExplorer/entityList/row';
@import 'views/entityExplorer/entityList/detail-overview';
+@import './views/detections/detections';
@import './views/charts/panel';
@import 'views/charts/chartIpOpenPortBar';
@import './views/charts/chartTable';
diff --git a/src/assets/css/components/views/detections/detections.scss b/src/assets/css/components/views/detections/detections.scss
new file mode 100644
index 00000000..e536d61a
--- /dev/null
+++ b/src/assets/css/components/views/detections/detections.scss
@@ -0,0 +1,19 @@
+.detection__event-severity-bar {
+ flex: 0 0 175px;
+ background-color: white;
+ width: 100%;
+ margin-bottom: 10px;
+}
+.detection__list {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+
+ .detection__list-statistics {
+ display: flex;
+ flex: 0 0 192px;
+ margin-bottom: 10px;
+ width: 100%;
+ background-color: white;
+ }
+}
diff --git a/src/router/index.js b/src/router/index.js
index 580d0ec9..999a3a18 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -10,10 +10,6 @@ const routes = [
path: '/entityDetail',
component: () => import('@/views/entityExplorer/EntityDetail')
},
- {
- path: '/detections',
- component: () => import('@/views/detections/Index')
- },
{
path: '/',
component: () => import('@/components/layout/Home'),
@@ -42,6 +38,10 @@ const routes = [
path: '/entityExplorer',
component: () => import('@/views/entityExplorer/EntityExplorer')
},
+ {
+ path: '/detections',
+ component: () => import('@/views/detections/Index')
+ },
{
path: '/galaxyProxy',
component: () => import('@/views/settings/GalaxyProxy')
diff --git a/src/views/detections/DetectionFilter.vue b/src/views/detections/DetectionFilter.vue
new file mode 100644
index 00000000..3703c50f
--- /dev/null
+++ b/src/views/detections/DetectionFilter.vue
@@ -0,0 +1,11 @@
+
+