Files
fizzy/app/views/commands/_command.html.erb
T
2025-05-06 09:27:00 +02:00

8 lines
298 B
Plaintext

<li class="min-width overflow-ellipsis flex">
<%= command.title %>
<% if command.undoable? %>
<%= button_to "Undo", command_undo_path(command), class: "btn btn--remove", data: { turbo_confirm: "Are you sure you want to undo '#{command.title}'?", turbo_frame: "_top" } %>
<% end %>
</li>