Remove old kwargs from SideNavItem

This commit is contained in:
graham-dds 2019-12-20 11:02:21 -06:00
parent 9e20ad5281
commit d81b82956b

View File

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