Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed software sidenav typo #40

Merged
merged 1 commit into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
<!-- addition of notable features. When PATCH is 0 it can -->
<!-- be omitted -->

# 5 December 2019
## ATT&CK Website version 1.0.4
### Fixes
- Fixed a typo in the software side-navigation header. See issue [#39](https://github.com/mitre-attack/attack-website/issues/39).

# 2 December 2019
## ATT&CK Website version 1.0.3
### Improvements
Expand Down
4 changes: 2 additions & 2 deletions modules/software.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ def generate_markdown_files():

data['software_list_len'] = str(len(config.software_list))

side_menu_data = util.get_side_menu_data("sofware", "/software/", config.software_list)
side_menu_data = util.get_side_menu_data("software", "/software/", config.software_list)
data['side_menu_data'] = side_menu_data

side_menu_mobile_view_data = util.get_side_menu_mobile_view_data("sofware", "/software/", config.software_list, group_by)
side_menu_mobile_view_data = util.get_side_menu_mobile_view_data("software", "/software/", config.software_list, group_by)
data['side_menu_mobile_view_data'] = side_menu_mobile_view_data

data['software_table'] = get_software_table_data()
Expand Down