Skip to content
Merged
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/).
### Fixed

- Prevent deletion of actors during escalation.
- Fix Uncaught ReferenceError: __s is not defined

## [2.10.2] - 2026-04-07

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 @@ -38,6 +38,7 @@
&& Session::haveRight("ticket", UPDATE)
) {
$locale_cloneandlink = __s("Clone and link", "escalade");
$locale_clone = __s("Clone");
$locale_linkedtickets = _sn('Linked ticket', 'Linked tickets', 2);

$JS = <<<JAVASCRIPT
Expand All @@ -54,8 +55,7 @@
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") +
"</button>";
"title='{$locale_cloneandlink}'><i class='ti ti-copy me-1'></i>{$locale_clone}</button>";

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