From 58e5e9b308113e5a8af5166328a68a0aafcc2558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Mon, 5 Mar 2018 17:25:00 -0300 Subject: [PATCH 1/2] Fix #1519 Add Card Btn dissapear on drag --- client/components/lists/list.js | 2 ++ client/components/swimlanes/swimlanes.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/client/components/lists/list.js b/client/components/lists/list.js index 51a9a0de8..d715c002b 100644 --- a/client/components/lists/list.js +++ b/client/components/lists/list.js @@ -72,6 +72,8 @@ BlazeComponent.extendComponent({ sort: sortIndex.base, }, }); + + boardComponent.setIsDragging(false); }, }); diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js index c121a222e..bbfc9ca26 100644 --- a/client/components/swimlanes/swimlanes.js +++ b/client/components/swimlanes/swimlanes.js @@ -34,6 +34,8 @@ BlazeComponent.extendComponent({ sort: sortIndex.base, }, }); + + boardComponent.setIsDragging(false); }, }); }, From 2092b429db2602e2a7846861ee89528bd0473e9e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 5 Mar 2018 22:43:02 +0200 Subject: [PATCH 2/2] - Fix Add Card Button dissapearing when dragging Thanks to andresmanelli ! Closes #1519 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc52005a9..e88175577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,8 @@ and fixes the following bugs: - [Fix scrollbar inside list and outer scroll](https://github.com/wekan/wekan/commit/a033c35a3411902b9bf8f62a40cd68f641e573d3); - [Remove list max-height 350px](https://github.com/wekan/wekan/commit/b6d3e79548d1e88c93fa2965a936595176a95565); - [Snap: Adding network hooks for configure hook to fix security denials](https://github.com/wekan/wekan/commit/9084158aece8a642dc49bf7ecc2196bf9d1af63e); -- [Snap: Fixing problem when mongodb was not started at install/refresh](https://github.com/wekan/wekan/commit/1be8e5625fd20797910009a8221ca706fd52ab11). +- [Snap: Fixing problem when mongodb was not started at install/refresh](https://github.com/wekan/wekan/commit/1be8e5625fd20797910009a8221ca706fd52ab11); +- [Fix Add Card Button dissapearing when dragging](https://github.com/wekan/wekan/commit/58e5e9b308113e5a8af5166328a68a0aafcc2558). Thanks to GitHub users andresmanelli, GhassenRjab, kubiko and xet7 for their contributions.