]> git.openstreetmap.org Git - rails.git/commitdiff
Remove inbox template and anchor id
authorAnton Khorev <tony29@yandex.ru>
Tue, 21 May 2024 16:57:16 +0000 (19:57 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 21 May 2024 16:57:16 +0000 (19:57 +0300)
app/views/layouts/_header.html.erb
app/views/layouts/_inbox.html.erb [deleted file]

index 8942eb49c5703e3b3e13cdcafbff1366e570485a..dfe74a7501d5cb1d3c0481c19f364a143c03c855 100644 (file)
@@ -83,7 +83,9 @@
       <div class='d-inline-flex dropdown user-menu logged-in'>
         <button class='dropdown-toggle btn btn-outline-secondary border-secondary-subtle bg-body text-secondary px-2 py-1 flex-grow-1' type='button' data-bs-toggle='dropdown'>
           <%= user_thumbnail_tiny(current_user, :width => 25, :height => 25, :class => "user_thumbnail_tiny rounded-1 bg-body") %>
-          <%= render :partial => "layouts/inbox" %>
+          <% if current_user.new_messages.size > 0 %>
+            <span class="badge count-number m-1"><%= current_user.new_messages.size %></span>
+          <% end %>
           <span class="user-button">
             <span class='username'>
               <%= current_user.display_name %>
diff --git a/app/views/layouts/_inbox.html.erb b/app/views/layouts/_inbox.html.erb
deleted file mode 100644 (file)
index 2f5a637..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-<% if current_user.new_messages.size > 0 %>
-<span id="inboxanchor" class="badge count-number m-1"><%= current_user.new_messages.size %></span>
-<% end %>