mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 10:14:17 +08:00
Fix checklist importing [SCI-10854]
This commit is contained in:
parent
3925a3a169
commit
d72862e25e
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class RepositoryChecklistValue < ApplicationRecord
|
|||
|
||||
def formatted(separator: ' | ')
|
||||
checklist_items = current_repository_checklist_items || repository_checklist_items
|
||||
checklist_items.pluck(:data).join(separator)
|
||||
checklist_items.map(&:data).join(separator)
|
||||
end
|
||||
|
||||
def export_formatted
|
||||
|
|
Loading…
Reference in a new issue