Bug 33066: Restore '(#id)' to lists

Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>

Signed-off-by: Agustín Moyano <agustinmoyano@theke.io>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Pedro Amorim 2023-03-08 18:36:24 +00:00 committed by Tomas Cohen Arazi
parent 50b29f6e87
commit 8bee4a203a
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
3 changed files with 4 additions and 4 deletions

View file

@ -175,7 +175,7 @@ export default {
this.setConfirmationDialog( this.setConfirmationDialog(
{ {
title: this.$__( title: this.$__(
"Are you sure you want to delete this agreement?" "Are you sure you want to remove this agreement?"
), ),
message: agreement.name, message: agreement.name,
accept_label: this.$__("Yes, delete"), accept_label: this.$__("Yes, delete"),
@ -240,7 +240,7 @@ export default {
'<a href="/cgi-bin/koha/erm/agreements/' + '<a href="/cgi-bin/koha/erm/agreements/' +
row.agreement_id + row.agreement_id +
'" class="show">' + '" class="show">' +
escape_str(row.name) + escape_str(`${row.name} (#${row.agreement_id})`) +
"</a>" "</a>"
) )
}, },

View file

@ -170,7 +170,7 @@ export default {
'<a href="/cgi-bin/koha/erm/eholdings/local/packages/' + '<a href="/cgi-bin/koha/erm/eholdings/local/packages/' +
row.package_id + row.package_id +
'" class="show">' + '" class="show">' +
escape_str(row.name) + escape_str(`${row.name} (#${row.package_id})`) +
"</a>" "</a>"
) )
}, },

View file

@ -140,7 +140,7 @@ export default {
'<a href="/cgi-bin/koha/erm/licenses/' + '<a href="/cgi-bin/koha/erm/licenses/' +
row.license_id + row.license_id +
'" class="show">' + '" class="show">' +
escape_str(row.name) + escape_str(`${row.name} (#${row.license_id})`) +
"</a>" "</a>"
) )
}, },