summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/users.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/users.js b/models/users.js
index 83a224ba..72d64c1c 100644
--- a/models/users.js
+++ b/models/users.js
@@ -396,8 +396,8 @@ Users.helpers({
return ret;
},
hasSortBy() {
- // if use doesn't have dragHandle, then we can let user to choose sort list by different order
- return !this.hasShowDesktopDragHandles();
+ // if use has dragHandle, then we can let user to choose sort list by different order
+ return this.hasShowDesktopDragHandles();
},
getListSortBy() {
return this._getListSortBy()[0];