summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--server/migrations.js2
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 230f04b1..0a1f58f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,11 @@ This release adds the following new features:
* [REST API Edit Card Labels](https://github.com/wekan/wekan/pull/1626).
-Thanks to GitHub user ThisNeko for contributions.
+and fixed the following bugs:
+
+* [Error: title is required](https://github.com/wekan/wekan/issues/1576).
+
+Thanks to GitHub users Shahar-Y and ThisNeko for their contributions.
# v0.94 2018-05-03 Wekan release
diff --git a/server/migrations.js b/server/migrations.js
index 684a8bbe..0fdd1fe0 100644
--- a/server/migrations.js
+++ b/server/migrations.js
@@ -193,7 +193,7 @@ Migrations.add('add-checklist-items', () => {
// Create new items
_.sortBy(checklist.items, 'sort').forEach((item, index) => {
ChecklistItems.direct.insert({
- title: item.title,
+ title: checklist.title,
sort: index,
isFinished: item.isFinished,
checklistId: checklist._id,