diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-03-02 12:47:17 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-03-02 12:47:17 +0200 |
commit | 9e62584b260a4a1bc5be1a66dfc3b6950664788d (patch) | |
tree | 3429f40ba034b74f466eb619fd1fd056f5599cc8 | |
parent | a8ae6adbc26e38c1d15e74a9a1def082bc21be47 (diff) | |
parent | 5849ffbb5340125f76f1265243af69a274a326f3 (diff) | |
download | wekan-9e62584b260a4a1bc5be1a66dfc3b6950664788d.tar.gz wekan-9e62584b260a4a1bc5be1a66dfc3b6950664788d.tar.bz2 wekan-9e62584b260a4a1bc5be1a66dfc3b6950664788d.zip |
Merge branch 'GhassenRjab-feature/list-default-view' into devel
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | models/boards.js | 2 |
2 files changed, 3 insertions, 2 deletions
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: 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'; } }, }, |