Bug 33066: Fix name display

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:
Jonathan Druart 2023-03-07 15:36:46 +01:00 committed by Tomas Cohen Arazi
parent fe3da95290
commit ea7e7aee26
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -522,11 +522,12 @@ export default {
searchable: true,
orderable: true,
render: function (data, type, row, meta) {
// Rendering done in drawCallback
return (
'<a href="/cgi-bin/koha/erm/agreements/' +
row.agreement_id +
'" class="show">show</a>'
'" class="show">' +
row.name +
"</a>"
)
},
},