8 lines
472 B
Plaintext
8 lines
472 B
Plaintext
<li class="min-width full-width flex gap-half terminal__item justify-start">
|
|
<button class="btn btn--plain overflow-ellipsis terminal__command flex-item-grow justify-start"><%= command.title %></button>
|
|
|
|
<% if command.undoable? %>
|
|
<%= button_to "Undo", command_undo_path(command), class: "btn btn--plain terminal__button flex-item-justify-end", data: { turbo_confirm: "Are you sure you want to undo '#{command.title}'?", turbo_frame: "_top" } %>
|
|
<% end %>
|
|
</li>
|