From a9ca17426b92ed346ca7051b526c7ced17c4fae8 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 12 Sep 2017 10:30:35 +0200 Subject: [PATCH 1/2] Existing title of card is pre-filled in copy dialog --- client/components/cards/cardDetails.jade | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/cards/cardDetails.jade b/client/components/cards/cardDetails.jade index 61876bca4..09e0532cb 100644 --- a/client/components/cards/cardDetails.jade +++ b/client/components/cards/cardDetails.jade @@ -127,6 +127,7 @@ template(name="moveCardPopup") template(name="copyCardPopup") label(for='copy-card-title') {{_ 'title'}}: textarea#copy-card-title.minicard-composer-textarea.js-card-title(autofocus) + = title label {{_ 'lists'}}: +boardLists From 9bfdc1932fc599a7104fb4a39b0366492e8e06ec Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 13 Sep 2017 20:41:16 +0300 Subject: [PATCH 2/2] Card title is now pre-filled in copy card dialog. Thanks to frmwrk123 ! Related #1213 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a6f5515..c3abcc82e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ This release adds the following new features: * [Reorder checklists. Move checklist item to another checklist.](https://github.com/wekan/wekan/pull/1215) +* [Card title is now pre-filled in copy card dialog](https://github.com/wekan/wekan/pull/1214). Thanks to GitHub user frmwrk123 for contributions.