fix:Arrow tool hover stuck highlight

This commit is contained in:
Mark Tolmacs 2025-09-13 14:44:24 +02:00
parent 737f6e08c1
commit 80706f733b
No known key found for this signature in database

View File

@ -6324,6 +6324,10 @@ class App extends React.Component<AppProps, AppState> {
this.setState({
suggestedBinding: hoveredElement,
});
} else if (this.state.suggestedBinding) {
this.setState({
suggestedBinding: null,
});
}
}
}