@aneuhold/core-ts-db-lib 1.0.34 → 1.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,9 +56,9 @@ class DashboardTaskSortService {
56
56
  // One doesn't have a value, it should be sorted to the bottom.
57
57
  // Purposefully not using the sortDirection here.
58
58
  if (valueA && !valueB)
59
- return 1;
60
- if (!valueA && valueB)
61
59
  return -1;
60
+ if (!valueA && valueB)
61
+ return 1;
62
62
  if (!valueA || !valueB)
63
63
  return 0;
64
64
  if (valueA instanceof Date && valueB instanceof Date) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aneuhold/core-ts-db-lib",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "A core database library used for personal projects",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",