This repository was archived by the owner on Jun 4, 2024. It is now read-only.
File tree 3 files changed +7
-2
lines changed
src/dash-table/components/Table
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## Unreleased
6
+
7
+ ### Fixed
8
+ - [ #670 ] ( https://github.com/plotly/dash-table/pull/670 ) Fix a bug where ` derived_filter_query_structure ` was not getting updated properly
9
+
5
10
## [ 4.5.1] - 2019-11-14
6
11
### Fixed
7
12
- [ #637 ] ( https://github.com/plotly/dash-table/pull/637 ) Fix multiple issues
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export default () => {
61
61
let newProps : Partial < SanitizedAndDerivedProps > = { } ;
62
62
63
63
if ( ! derivedStructureCache . cached ) {
64
- newProps . derived_filter_structure = derivedStructureCache . result ;
64
+ newProps . derived_filter_query_structure = derivedStructureCache . result ;
65
65
}
66
66
67
67
if ( ! virtualCached ) {
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ interface IDefaultProps {
392
392
}
393
393
394
394
interface IDerivedProps {
395
- derived_filter_structure : object | null ;
395
+ derived_filter_query_structure : object | null ;
396
396
derived_viewport_data : Data ;
397
397
derived_viewport_indices : Indices ;
398
398
derived_viewport_row_ids : RowId [ ] ;
You can’t perform that action at this time.
0 commit comments