Skip to content

Commit

Permalink
Update analysis_tags.py
Browse files Browse the repository at this point in the history
  • Loading branch information
doomedraven committed Feb 8, 2024
1 parent 29cd4b8 commit e5cdfca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/analysis/templatetags/analysis_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def _print(lvl, s):
_print(3, "<tbody>\n")
for tactic, techniques in obj.get("ATTCK", {}).items():
_print(4, "<tr>\n")
_print(4, '<th scope="row">' + tactic + "</th>\n")
_print(4, '<th width="25%" scope="row">' + tactic + "</th>\n")
_print(4, "<td>\n")
for technique in techniques:
_print(5, "<li>" + technique + "</li>\n")
Expand Down Expand Up @@ -190,7 +190,7 @@ def _print(lvl, s):
_print(3, "<tbody>\n")
for objective, behaviors in obj.get("MBC", {}).items():
_print(4, "<tr>\n")
_print(4, '<th scope="row">' + objective + "</th>\n")
_print(4, '<th width="25%" scope="row">' + objective + "</th>\n")
_print(4, "<td>\n")
for behavior in behaviors:
_print(5, "<li>" + behavior + "</li>\n")
Expand Down

0 comments on commit e5cdfca

Please sign in to comment.