Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit a149f05

Browse files
committed
CHANGELOG Y FIXED
1 parent eb9b665 commit a149f05

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.7.1
2+
### Improved
3+
- Now select source tags will be ordered alphabetically and the number of tags will be shown. [ISSUE#76](https://github.com/RafaelGB/obsidian-db-folder/issues/76)
4+
### No longer broken
5+
- More that one filter can be applied again to the same source. [ISSUE#113](https://github.com/RafaelGB/obsidian-db-folder/issues/113)
6+
- You can not order by tags because was not prepared to do it yet (crashed). [ISSUE#119](https://github.com/RafaelGB/obsidian-db-folder/issues/119)
7+
- Sorting state is not lost anymore when datadispatch is triggered[ISSUE#122](https://github.com/RafaelGB/obsidian-db-folder/issues/122)[ISSUE#125](https://github.com/RafaelGB/obsidian-db-folder/issues/125)
18
## 1.7.0
29
### Shiny new things
310
- New config option to choose the row height [ISSUE#69](https://github.com/RafaelGB/obsidian-db-folder/issues/69) [artisticat1](https://github.com/artisticat1)

src/components/reducers/DatabaseDispatch.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,11 +481,14 @@ export function databaseReducer(state: TableDataType, action: ActionType) {
481481
}
482482
return column;
483483
});
484-
484+
state.initialState.sortBy = action.sortArray;
485485
return update(state, {
486486
columns: {
487487
$set: modifiedColumns,
488488
},
489+
initialState: {
490+
$set: state.initialState,
491+
},
489492
});
490493

491494
// case ActionTypes.MODIFY_COLUMN_SORTING:

0 commit comments

Comments
 (0)