From 3b0f35aef31bd5ca4008e0cdf86742c14acf1f87 Mon Sep 17 00:00:00 2001 From: aignatov-bio Date: Thu, 22 Oct 2020 14:33:17 +0200 Subject: [PATCH] Fix markup --- config/initializers/extends.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/initializers/extends.rb b/config/initializers/extends.rb index 025d54ef8..2e0ee4734 100644 --- a/config/initializers/extends.rb +++ b/config/initializers/extends.rb @@ -44,7 +44,7 @@ class Extends EXPORT_ALL_PROJECT_ELEMENTS = [ { type_of: 'project_header', - id_key: 'project_id', + id_key: 'project_id' }, { type_of: 'experiment', @@ -58,7 +58,7 @@ class Extends children: [ { type_of: 'my_module_protocol', - id_key: 'my_module_id', + id_key: 'my_module_id' }, { type_of: 'step', @@ -68,22 +68,22 @@ class Extends { type_of: 'step_asset', relation: %w(assets), - id_key: 'asset_id', + id_key: 'asset_id' }, { type_of: 'step_table', relation: %w(tables), - id_key: 'table_id', + id_key: 'table_id' }, { type_of: 'step_checklist', relation: %w(checklists), - id_key: 'checklist_id', + id_key: 'checklist_id' }, { type_of: 'step_comments', id_key: 'step_id', - sort_order: 'asc', + sort_order: 'asc' } ] },