From b826eb47fe6f549cfb1cc4a3f28467b34e104b16 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Tue, 4 Nov 2025 21:54:14 -0600 Subject: [PATCH] Remove draft restoration notice We don't need to announce that there is autosaved content --- app/views/cards/_container.html.erb | 2 -- app/views/cards/container/_status.html.erb | 5 ----- 2 files changed, 7 deletions(-) delete mode 100644 app/views/cards/container/_status.html.erb diff --git a/app/views/cards/_container.html.erb b/app/views/cards/_container.html.erb index 3914f93ff..935bd05ec 100644 --- a/app/views/cards/_container.html.erb +++ b/app/views/cards/_container.html.erb @@ -1,7 +1,5 @@ <% cache card do %>
- <%= render "cards/container/status", card: card %> -
<%= render "cards/container/gild", card: card if card.published? && !card.closed? %> <%= render "cards/container/image", card: card %> diff --git a/app/views/cards/container/_status.html.erb b/app/views/cards/container/_status.html.erb deleted file mode 100644 index 043e35dc0..000000000 --- a/app/views/cards/container/_status.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<% if card.drafted? && card.filled? %> -
- Restored the draft you were working on -
-<% end %>