diff --git a/src/lib/project-saver-hoc.jsx b/src/lib/project-saver-hoc.jsx index af66847a473f471e5093d7bc501c3d32945c59a4..c92acdd4d58d0a8f87a413cf8a055558f93e2004 100644 --- a/src/lib/project-saver-hoc.jsx +++ b/src/lib/project-saver-hoc.jsx @@ -52,7 +52,7 @@ const ProjectSaverHOC = function (WrappedComponent) { if (typeof window === 'object') { // Note: it might be better to use a listener instead of assigning onbeforeunload; // but then it'd be hard to turn this listening off in our tests - window.onbeforeunload = () => this.leavePageConfirm; + window.onbeforeunload = (e) => this.leavePageConfirm(e); } } componentDidUpdate (prevProps) { @@ -102,7 +102,7 @@ const ProjectSaverHOC = function (WrappedComponent) { (e || window.event).returnValue = true; return true; } - return false; // do not prompt + return; // Returning undefined prevents the prompt from coming up } clearAutoSaveTimeout () { if (this.props.autoSaveTimeoutId !== null) {