Fix annotation cache (#18788)

This commit is contained in:
Geido
2022-02-21 16:57:22 +02:00
committed by GitHub
parent c491829e99
commit 535634310b
2 changed files with 13 additions and 9 deletions

View File

@@ -98,7 +98,11 @@ class AnnotationLayerControl extends React.PureComponent {
this.setState({ addedAnnotationIndex: annotations.length - 1 });
}
this.props.refreshAnnotationData(newAnnotation);
this.props.refreshAnnotationData({
annotation: newAnnotation,
force: true,
});
this.props.onChange(annotations);
}
@@ -239,8 +243,8 @@ function mapStateToProps({ charts, explore }) {
function mapDispatchToProps(dispatch) {
return {
refreshAnnotationData: annotationLayer =>
dispatch(runAnnotationQuery(annotationLayer)),
refreshAnnotationData: annotationObj =>
dispatch(runAnnotationQuery(annotationObj)),
};
}