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:
parent
50b29f6e87
commit
8bee4a203a
3 changed files with 4 additions and 4 deletions
|
@ -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>"
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
|
@ -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>"
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
|
@ -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>"
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue