diff --git a/app/views/admin/custom_fields/_check_boxes_field.html.haml b/app/views/admin/custom_fields/_check_boxes_field.html.haml index 373effb9d3..927cf76bee 100644 --- a/app/views/admin/custom_fields/_check_boxes_field.html.haml +++ b/app/views/admin/custom_fields/_check_boxes_field.html.haml @@ -1,6 +1,9 @@ %div - .label.top.req + .label.top = "Select Options (pipe separated):" -= f.text_field :collection_string, class: 'field_collection_string', size: 78 += f.text_field :collection_string, class: 'field_collection_string', size: 78, placeholder: "Option 1|Option 2|Option 3" = render partial: 'admin/custom_fields/base_field', locals: {f: f} + +- if f.object.new_record? + .info2 After saving, you must restart all instances of the Rails server to apply column serialization. \ No newline at end of file