Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
New Rocket slashes not the same
  • Loading branch information
levkk committed Aug 15, 2023
commit 1f14f69312266966f1ed9e9413e43f91bc7ba05c
2 changes: 1 addition & 1 deletion pgml-dashboard/templates/content/dashboard/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1>Dashboard</h1>
<ul class="nav nav-tabs" role="tablist" >
<% for (i, tab) in tabs.tabs.iter().enumerate() { %>
<li class="nav-item" role="presentation">
<a class="nav-link <%- check_if_active(tabs.active, tab.name) %>" href="/dashboard/?tab=<%- tab.name %>" type="button" role="tab" aria-controls="tab-<%- tab.name %>" aria-selected="<%= i %>" data-turbo-action="advance" >
<a class="nav-link <%- check_if_active(tabs.active, tab.name) %>" href="/dashboard?tab=<%- tab.name %>" type="button" role="tab" aria-controls="tab-<%- tab.name %>" aria-selected="<%= i %>" data-turbo-action="advance" >
<%- tab.name.replace("_", " ") %>
</a>
</li>
Expand Down