Merge pull request #1272 from dod-ccpo/bugfix/sidenav-kwargs

Remove old kwargs from SidenavItem
This commit is contained in:
graham-dds 2019-12-20 12:19:01 -05:00 committed by GitHub
commit 3d151e7aaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,6 @@
{{ SidenavItem("JEDI Cloud Help",
href = url_for("atst.helpdocs"),
active = not doc,
icon='help'
)}}
{% for doc_item in docs %}
@ -21,7 +20,6 @@
{{ SidenavItem(doc_item | title,
href = url_for("atst.helpdocs", doc=doc_item),
active = active,
subnav = subnav or None
)}}
{% endfor %}