summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-10-30 20:33:53 +0200
committerLauri Ojansivu <x@xet7.org>2019-10-30 20:33:53 +0200
commitacc6bc07589038fb8369865915f529453103f47d (patch)
tree4168284d02ae4304e427a9b78b5c8e639d6283dc /models
parentf3bc92904c2c054ba832a536599759f02a226f6b (diff)
parent3308d90a3a6a1ddeed33966767937cd2c2c90cb5 (diff)
downloadwekan-acc6bc07589038fb8369865915f529453103f47d.tar.gz
wekan-acc6bc07589038fb8369865915f529453103f47d.tar.bz2
wekan-acc6bc07589038fb8369865915f529453103f47d.zip
Merge branch 'master' of https://github.com/whowillcare/wekan into whowillcare-master
Diffstat (limited to 'models')
-rw-r--r--models/cards.js7
-rw-r--r--models/users.js4
2 files changed, 6 insertions, 5 deletions
diff --git a/models/cards.js b/models/cards.js
index 27dda0ee..1c56a6d2 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -1696,10 +1696,11 @@ if (Meteor.isServer) {
const activityType = `a-${action}`;
const card = Cards.findOne(doc._id);
const list = card.list();
- if (list && action === 'endAt') {
- // change list modifiedAt
+ if (list) {
+ // change list modifiedAt, when user modified the key values in timingaction array, if it's endAt, put the modifiedAt of list back to one year ago for sorting purpose
const modifiedAt = new Date(
- new Date(value).getTime() - 365 * 24 * 3600 * 1e3,
+ new Date(value).getTime() -
+ (action === 'endAt' ? 365 * 24 * 3600 * 1e3 : 0),
); // set it as 1 year before
const boardId = list.boardId;
Lists.direct.update(
diff --git a/models/users.js b/models/users.js
index 72d64c1c..83a224ba 100644
--- a/models/users.js
+++ b/models/users.js
@@ -396,8 +396,8 @@ Users.helpers({
return ret;
},
hasSortBy() {
- // if use has dragHandle, then we can let user to choose sort list by different order
- return this.hasShowDesktopDragHandles();
+ // if use doesn't have dragHandle, then we can let user to choose sort list by different order
+ return !this.hasShowDesktopDragHandles();
},
getListSortBy() {
return this._getListSortBy()[0];