From e29412a94d9b29c1a9ffb4573e0eb8f08ba2c556 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Mon, 25 Oct 2021 03:12:59 -0500 Subject: [PATCH] Fix language dropdown not correctly setting lang --- _includes/nav.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/nav.html b/_includes/nav.html index 6a116f9d..47b0cf8a 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -43,7 +43,7 @@ {% for item in site[collection.label] %} {% assign itemRef = item.url | split: item.lang | last %} {% if itemRef == ref %} -
  • {{ site.data.lang-names[item.lang] }}
  • +
  • {{ site.data.lang-names[item.lang] }}
  • {% endif %} {% endfor %} {% endunless %}