Skip to content

Commit

Permalink
Merge pull request #179 from TWestling/JENKINS-73028
Browse files Browse the repository at this point in the history
Fix link for removing causes from the management page
  • Loading branch information
rsandell committed Jun 3, 2024
2 parents e5d67f3 + 14bea63 commit 08b8145
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,10 @@ l.layout(norefresh: true) {
}
td {
if (canRemove) {
a(href: "remove?id=" + cause.getId(), title:_("Remove")) {
l.task(icon: "icon-edit-delete icon-sm", alt: _("Remove"))
}
l.task(href:"remove?id=" + cause.getId(),
title: _("Remove"),
icon: "icon-edit-delete icon-sm",
alt: _("Remove"))
}
}
}
Expand Down

0 comments on commit 08b8145

Please sign in to comment.