mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-21 06:51:25 +08:00
Fix protocol duplication in table [SCI-7990]
This commit is contained in:
parent
3735ba51b8
commit
bba9570228
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ class ProtocolsDatatable < CustomDatatable
|
||||||
{
|
{
|
||||||
DT_RowId: record.id,
|
DT_RowId: record.id,
|
||||||
DT_RowAttr: {
|
DT_RowAttr: {
|
||||||
'data-permissions-url': permissions_protocol_path(record)
|
'data-permissions-url': permissions_protocol_path(record),
|
||||||
|
'data-clone-url': clone_protocol_path(record)
|
||||||
},
|
},
|
||||||
'1': name_html(record),
|
'1': name_html(record),
|
||||||
'2': record.code,
|
'2': record.code,
|
||||||
|
|
Loading…
Reference in a new issue