mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-30 08:54:31 +08:00
Make SoftLockedRepository default columns the same as Repository [SCI-11148]
This commit is contained in:
parent
66c8c6c59b
commit
df30f2c1c8
1 changed files with 4 additions and 2 deletions
|
@ -245,8 +245,10 @@ module RepositoryDatatableHelper
|
||||||
'4': "#{record.parent_connections_count || 0} / #{record.child_connections_count || 0}",
|
'4': "#{record.parent_connections_count || 0} / #{record.child_connections_count || 0}",
|
||||||
'5': I18n.l(record.created_at, format: :full),
|
'5': I18n.l(record.created_at, format: :full),
|
||||||
'6': escape_input(record.created_by_full_name),
|
'6': escape_input(record.created_by_full_name),
|
||||||
'7': (record.archived_on ? I18n.l(record.archived_on, format: :full) : ''),
|
'7': (record.updated_at ? I18n.l(record.updated_at, format: :full) : ''),
|
||||||
'8': escape_input(record.archived_by_full_name)
|
'8': escape_input(record.last_modified_by_full_name),
|
||||||
|
'9': (record.archived_on ? I18n.l(record.archived_on, format: :full) : ''),
|
||||||
|
'10': escape_input(record.archived_by_full_name)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue