Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Description field not importing from CSV #193

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/models/project.rb
Expand Up @@ -54,7 +54,8 @@ def from_csv(csv_string)
:owned_by => users.detect {|u| u.name == row["Owned By"]},
:accepted_at => row_attrs["Accepted at"],
:estimate => row_attrs["Estimate"],
:labels => row_attrs["Labels"]
:labels => row_attrs["Labels"],
:description => row_attrs["Description"]
})

# Generate notes for this story if any are present
Expand Down