diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/tour/tourGuide.js b/packages/node_modules/@node-red/editor-client/src/js/ui/tour/tourGuide.js index 87f9cabf2..651020d21 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/tour/tourGuide.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/tour/tourGuide.js @@ -348,7 +348,12 @@ RED.tourGuide = (function() { maxWidth: maxWidth+"px", direction: direction, }) - + setTimeout(function() { + var pos = popover.element.position() + if (pos.left < 0) { + popover.element.css({left: 0}); + } + },100); if (nextButton) { setTimeout(function() { nextButton.focus();