Skip to content

Commit

Permalink
Merge pull request #1074 from OSC/cosmetic_fixes
Browse files Browse the repository at this point in the history
Fix highlight on nav and open 'internal links' in same window
  • Loading branch information
ericfranz authored Apr 23, 2021
2 parents 43af62c + af87755 commit c1c1a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/app/views/files/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<ul id="favorites" class="nav nav-pills flex-column">
<li role="presentation" class="nav-item"><%= link_to 'Home Directory', files_path(Dir.home), class: "nav-link d bg-light" %></li>
<% OodFilesApp.new.favorite_paths.each do |p| %>
<li class="nav-item bg-light"><%= link_to p.title || p.path.to_s, files_path(p.path.to_s), class: "nav-link d" %>
<li class="nav-item"><%= link_to p.title || p.path.to_s, files_path(p.path.to_s), class: "nav-link d bg-light" %>
<% end %>
</ul>
</nav>
Expand Down

0 comments on commit c1c1a02

Please sign in to comment.