summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--client/components/lists/list.js2
-rw-r--r--client/components/swimlanes/swimlanes.js2
3 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc52005a..e8817557 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.
diff --git a/client/components/lists/list.js b/client/components/lists/list.js
index 51a9a0de..d715c002 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 c121a222..bbfc9ca2 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);
},
});
},