1
0

Preliminary Target :edit support

This commit is contained in:
cryptogopher
2020-08-25 02:55:21 +02:00
parent 8d4e5215b3
commit 6ba8ad5376
4 changed files with 11 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ module TargetsHelper
def action_links(d)
link_to(l(:button_reapply), reapply_project_targets_path(@project, d, @view_params),
{remote: true, class: "icon icon-reload"}) +
link_to(l(:button_edit), edit_target_path(@project, d, @view_params),
link_to(l(:button_edit), edit_project_targets_path(@project, d, @view_params),
{remote: true, class: "icon icon-edit"}) +
delete_link(target_path(d), {remote: true, data: {}})
end