fix: [website] print and css

pull/592/merge
David Cruciani 2024-02-27 11:21:29 +01:00
parent ee02bb171b
commit 2b94f73c15
No known key found for this signature in database
GPG Key ID: 8690CDE1E3994B9B
2 changed files with 33 additions and 31 deletions

View File

@ -8,7 +8,7 @@ body {
main
{
overflow-x: auto;
overflow-x: hidden;
}
span#goTop{
position: fixed;

View File

@ -7,7 +7,7 @@ from .utils import query_get_module
def create_modules_db():
modules = query_get_module()
if not "message" in modules:
for module in modules:
m = Module.query.filter_by(name=module["name"]).first()
input_attr = ""
@ -41,3 +41,5 @@ def create_modules_db():
)
db.session.add(mc)
db.session.commit()
else:
print("[-] Error in misp-modules. It might not running.")