WIP: Draft: feat: added editor warning system and more user feedback #45

Closed
j.gerla wants to merge 43 commits from feat/editor-user-feedback into dev
Showing only changes of commit 2cbd905f0b - Show all commits

View File

@@ -134,11 +134,7 @@ function useJumpToNode() {
return (nodeId: string) => { return (nodeId: string) => {
// select the node // user can't jump to global warning, so prevent further logic from running if the warning is a globalWarning
// user can't jump to global warning, so prevent further logic from running
if (nodeId === globalWarning) return; if (nodeId === globalWarning) return;
const node = getNode(nodeId); const node = getNode(nodeId);
if (!node) return; if (!node) return;