Merge pull request #5306 from node-red/5244-redraw-after-clearing-suggestion

Force a redraw after clearing suggested flow on mouse down
pull/5309/head
Nick O'Leary 2025-10-10 16:03:36 +01:00 committed by GitHub
commit 5427d43a98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -6725,6 +6725,7 @@ RED.view = (function() {
if (suggestion.clickToApply) {
$(window).on('mousedown.suggestedFlow', function (evnt) {
clearSuggestedFlow();
RED.view.redraw(true);
})
}
}