Skip to content

Commit

Permalink
Merge pull request #3403 from CityOfBoston/develop
Browse files Browse the repository at this point in the history
(stage) (hotfix) Update feedback link in top navigation
  • Loading branch information
davidrkupton authored Apr 9, 2024
2 parents cbd5837 + 9bbf25a commit 2bfcac4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@

{% for item in secondary_menu['#items'] %}
<li class="nv-h-l-i">
{{ link(item.title, item.url, { 'class':['nv-h-l-a']}) }}
{% if item.title == "Feedback" %}
<a href="{{ item.url }}" class="webform-dialog webform-dialog-narrow nv-h-l-a ">{{ item.title }}</a>
{% else %}
{{ link(item.title, item.url, create_attribute({ 'class':['nv-h-l-a']})) }}
{% endif %}
</li>
{% endfor %}
{#
Expand Down

0 comments on commit 2bfcac4

Please sign in to comment.