fix(legacy-plugin-chart-sunburst): chart broken when secondary metric is remove (#20223)

This commit is contained in:
Stephen Liu 2022-05-31 21:18:49 +08:00 committed by GitHub
parent 0ee1f492a7
commit ad72ea53a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -237,9 +237,9 @@ export const DndMetricSelect = (props: any) => {
const valuesCopy = [...value]; const valuesCopy = [...value];
valuesCopy.splice(index, 1); valuesCopy.splice(index, 1);
setValue(valuesCopy); setValue(valuesCopy);
onChange(valuesCopy); handleChange(valuesCopy);
}, },
[onChange, value], [handleChange, value],
); );
const moveLabel = useCallback( const moveLabel = useCallback(