windmill-components 1.613.3 → 1.613.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,14 +20,7 @@ async function restartFlow(stepId, branchOrIterationN, flowVersion) {
20
20
  flow_version: flowVersion
21
21
  }
22
22
  });
23
- if (onRestartComplete) {
24
- onRestartComplete(run);
25
- }
26
- else {
27
- // Lazy load navigation for SvelteKit contexts
28
- const { goto } = await import('../navigation');
29
- await goto('/run/' + run + '?workspace=' + $workspaceStore);
30
- }
23
+ onRestartComplete?.(run);
31
24
  }
32
25
  async function loadFlowVersions() {
33
26
  if (!flowPath || loadingVersions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-components",
3
- "version": "1.613.3",
3
+ "version": "1.613.4",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build",