We had inconsistent indentation in many places. Now we're fixing them and adding a linter to our CI so we don't accidentally introduce inconsistent indentations again.
28 lines
691 B
Plaintext
28 lines
691 B
Plaintext
<header class="header">
|
|
<div class="top-links">
|
|
<%= render Layout::LocaleSwitcherComponent.new %>
|
|
|
|
<% if show_link_to_root_path? %>
|
|
<%= link_to root_path do %>
|
|
<%= t("admin.dashboard.index.back", org: setting["org_name"]) %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="top-bar">
|
|
<h1>
|
|
<%= link_to namespace_path do %>
|
|
<%= setting["org_name"] %>
|
|
<br>
|
|
<small><%= namespaced_header_title %></small>
|
|
<% end %>
|
|
</h1>
|
|
|
|
<% if show_account_menu? %>
|
|
<%= render Layout::ResponsiveMenuComponent.new do %>
|
|
<%= render Layout::AccountMenuComponent.new(user) %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</header>
|