Skip to content

Commit

Permalink
Disable turbo on the login link
Browse files Browse the repository at this point in the history
Ref #3921
  • Loading branch information
jcoyne committed Feb 9, 2024
1 parent 2d7b60f commit 8f0f2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/shared/_top_navbar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<% if current_user %>
<%= link_to "#{current_user.sunet}: Logout", destroy_user_session_path, class: 'first' %>
<% else %>
<%= link_to 'Login', new_user_session_path(referrer: request.original_url), class: 'first' %>
<%= link_to 'Login', new_user_session_path(referrer: request.original_url), class: 'first', data: { turbo: false } %>
<% end %>
<%= link_to "My Account", "https://mylibrary.stanford.edu/" %>
<%= link_to feedback_path, data: {toggle:"collapse", target:"#feedback-form"} do %>
Expand Down

0 comments on commit 8f0f2c9

Please sign in to comment.