mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
return if no connection
This commit is contained in:
parent
cb95ab9109
commit
3cca56d2ee
|
@ -1366,6 +1366,9 @@ export default mixins(
|
||||||
|
|
||||||
info.connection.bind('mouseout', (connection: IConnection) => {
|
info.connection.bind('mouseout', (connection: IConnection) => {
|
||||||
timer = setTimeout(() => {
|
timer = setTimeout(() => {
|
||||||
|
if (!info.connection) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const overlay = info.connection.getOverlay('connection-actions');
|
const overlay = info.connection.getOverlay('connection-actions');
|
||||||
overlay.setVisible(false);
|
overlay.setVisible(false);
|
||||||
timer = undefined;
|
timer = undefined;
|
||||||
|
|
Loading…
Reference in a new issue