Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Prevent business rules from triggering twice on tickets
- Fixed routing issue caused by incorrect trailing slash
- Fixed JS error

## [2.9.19] - 2026-27-01

Expand Down
4 changes: 2 additions & 2 deletions public/js/cloneandlink_ticket.js.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
//delay the execution (ajax requestcomplete event fired before dom loading)
setTimeout( function () {
if ($("#cloneandlink_ticket").length > 0) { return; }
var duplicate_html = "<button id='cloneandlink_ticket' class='btn btn-sm btn-ghost-secondary ms-auto'"+
"title='{$locale_cloneandlink}'><i class='ti ti-copy me-1'></i>" + __s("Clone") +
var duplicate_html = "<button id='cloneandlink_ticket' class='btn btn-sm btn-ghost-secondary ms-auto'" +
"title='{$locale_cloneandlink}'><i class='ti ti-copy me-1'></i>" + '{$locale_cloneandlink}' +
"</button>";

$("#linked_tickets-heading .accordion-button")
Expand Down