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

Force a redraw after clearing suggested flow on mouse down
This commit is contained in:
Nick O'Leary
2025-10-10 16:03:36 +01:00
committed by GitHub

View File

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