Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Update naming of derived_filter_query_structure in derivedPropsHelper. #670

Merged
merged 2 commits into from
Dec 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Fixed
- [#670](https://github.com/plotly/dash-table/pull/670) Fix a bug where `derived_filter_query_structure` was not getting updated properly

## [4.5.1] - 2019-11-14
### Fixed
- [#637](https://github.com/plotly/dash-table/pull/637) Fix multiple issues
Expand Down
2 changes: 1 addition & 1 deletion src/dash-table/components/Table/derivedPropsHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default () => {
let newProps: Partial<SanitizedAndDerivedProps> = {};

if (!derivedStructureCache.cached) {
newProps.derived_filter_structure = derivedStructureCache.result;
newProps.derived_filter_query_structure = derivedStructureCache.result;
}

if (!virtualCached) {
Expand Down
2 changes: 1 addition & 1 deletion src/dash-table/components/Table/props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ interface IDefaultProps {
}

interface IDerivedProps {
derived_filter_structure: object | null;
derived_filter_query_structure: object | null;
derived_viewport_data: Data;
derived_viewport_indices: Indices;
derived_viewport_row_ids: RowId[];
Expand Down