Merge pull request #36 from finnlabs/feature/bugfix-customfield-in-modal-dialogue

Fix module namespace for custom field paragraphs of custom fields in mod...
pull/6827/head
sschu 12 years ago
commit 8666784e91
  1. 2
      lib/open_project/backlogs/issue_form/fields_paragraph.rb

@ -75,7 +75,7 @@ class OpenProject::Backlogs::IssueForm::FieldsParagraph < OpenProject::Backlogs:
return fields if @issue.custom_field_values.empty?
@issue.custom_field_values.each do |custom_value|
fields[custom_value.custom_field.name] = Backlogs::IssueForm::CustomFieldParagraph.new(custom_value)
fields[custom_value.custom_field.name] = OpenProject::Backlogs::IssueForm::CustomFieldParagraph.new(custom_value)
end
fields

Loading…
Cancel
Save