mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
Merge pull request #2827 from okriuchykhin/ok_SCI_4880_v2
Fix missing step edit button [SCI-4880]
This commit is contained in:
commit
7fe26fb90f
1 changed files with 7 additions and 0 deletions
|
@ -66,6 +66,13 @@
|
|||
data: { action: 'move-step', direction: :down }) do %>
|
||||
<span class="fas fa-arrow-down"></span>
|
||||
<% end %>
|
||||
<%= link_to(edit_step_path(step),
|
||||
title: t('protocols.steps.options.edit_title'),
|
||||
class: 'btn btn-light icon-btn',
|
||||
remote: true,
|
||||
data: { action: 'edit-step' }) do %>
|
||||
<span class="fas fa-pencil-alt"></span>
|
||||
<% end %>
|
||||
<%= link_to(step_path(step),
|
||||
title: t('protocols.steps.options.delete_title'),
|
||||
method: :delete,
|
||||
|
|
Loading…
Reference in a new issue