@mx-cartographer/experiences 6.26.20 → 6.26.21-alpha.al0
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.
- package/CHANGELOG.md +4 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -24823,7 +24823,7 @@ class ab {
|
|
|
24823
24823
|
this.visibleListLength = n;
|
|
24824
24824
|
};
|
|
24825
24825
|
get sortedDetailedCategoriesWithTransactions() {
|
|
24826
|
-
return this.globalStore.categoryStore.detailedCategoriesWithTransactions.slice().filter((n) => n.totalAmount !== 0).sort((n, i) => Math.abs(i.totalAmount) - Math.abs(n.totalAmount));
|
|
24826
|
+
return this.globalStore.categoryStore.detailedCategoriesWithTransactions.slice().filter((n) => n.totalAmount !== 0).filter((n) => n.isTransfer === !1).sort((n, i) => Math.abs(i.totalAmount) - Math.abs(n.totalAmount));
|
|
24827
24827
|
}
|
|
24828
24828
|
get selectedDateRangeMonthCount() {
|
|
24829
24829
|
return po(this.selectedDateRange.end, this.selectedDateRange.start) + 1;
|