diff --git a/website/app/static/css/core.css b/website/app/static/css/core.css index 7da1b98..8444440 100644 --- a/website/app/static/css/core.css +++ b/website/app/static/css/core.css @@ -6,7 +6,10 @@ body { background-color: #fbfbfb; } - +main + { + overflow-x: auto; + } span#goTop{ position: fixed; right: 1em; diff --git a/website/app/templates/home.html b/website/app/templates/home.html index e952fb1..f80d4fe 100644 --- a/website/app/templates/home.html +++ b/website/app/templates/home.html @@ -48,7 +48,7 @@

Modules

@@ -232,7 +232,14 @@ } function checked_attr(arr1){ - return arr1.includes(attr_selected.value) + let loc = arr1.includes(attr_selected.value) + if(!loc && attr_selected.value == 'ip'){ + loc = arr1.includes('ip-dst') + if(!loc && attr_selected.value == 'ip'){ + loc = arr1.includes('ip-src') + } + } + return loc }