Disable turbolinks when switching the language.

This is required as code within the ACE editor would get duplicated if the switch forces a full pageload otherwise.
This commit is contained in:
Sebastian Serth
2021-06-16 14:25:24 +02:00
parent 095df56222
commit 4b8e12e49a

View File

@ -4,4 +4,4 @@ li.nav-item.dropdown
span.caret
ul.dropdown-menu.p-0.mt-1 role='menu'
- I18n.available_locales.sort_by { |locale| t("locales.#{locale}") }.each do |locale|
li = link_to(t("locales.#{locale}"), url_for(params.permit!.merge(locale: locale)), class: 'dropdown-item')
li = link_to(t("locales.#{locale}"), url_for(params.permit!.merge(locale: locale)), 'data-turbolinks' => "false", class: 'dropdown-item')