From 1ca9e96f35389c0eec2290e8e1207801ee25f907 Mon Sep 17 00:00:00 2001 From: Ghassen Rjab Date: Fri, 2 Mar 2018 00:06:45 +0100 Subject: Lists view is the default view when creating boards --- models/boards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/boards.js b/models/boards.js index 8a7ae1aa..436a99f5 100644 --- a/models/boards.js +++ b/models/boards.js @@ -35,7 +35,7 @@ Boards.attachSchema(new SimpleSchema({ type: String, autoValue() { // eslint-disable-line consistent-return if (this.isInsert) { - return 'board-view-swimlanes'; + return 'board-view-lists'; } }, }, -- cgit v1.2.3-1-g7c22 From 5849ffbb5340125f76f1265243af69a274a326f3 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 2 Mar 2018 12:45:20 +0200 Subject: - Lists view is the default view when creating boards. Thanks to GhassenRjab ! Closes #1507 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9afdeceb..dc52005a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ This release adds the following new features: - [Allow swimlanes reordering](https://github.com/wekan/wekan/commit/37c94622e476f50bf2387bc8b140454d66200e78); -- [Import missing card fields: isOvertime, startAt and spentTime](https://github.com/wekan/wekan/commit/b475127c53031fa498da139a7d16f3e54d43b90d). +- [Import missing card fields: isOvertime, startAt and spentTime](https://github.com/wekan/wekan/commit/b475127c53031fa498da139a7d16f3e54d43b90d); +- [Lists view is the default view when creating boards](https://github.com/wekan/wekan/commit/1ca9e96f35389c0eec2290e8e1207801ee25f907). and fixes the following bugs: -- cgit v1.2.3-1-g7c22