zen-gitsync 2.8.4 → 2.8.5
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.
- package/package.json +1 -1
- package/src/ui/public/assets/index-Bwje85Kx.js +78 -0
- package/src/ui/public/assets/{index-BvQ7ApK7.css → index-CFnuGkZZ.css} +1 -1
- package/src/ui/public/assets/vendor-B1z91bUn.css +1 -0
- package/src/ui/public/assets/vendor-CysQL2Yr.js +102 -0
- package/src/ui/public/index.html +4 -4
- package/src/ui/server/index.js +4 -2
- package/src/ui/public/assets/index-DG746PgG.js +0 -78
- package/src/ui/public/assets/vendor-BWT9SBHo.css +0 -1
- package/src/ui/public/assets/vendor-DTe_17Fm.js +0 -77
package/src/ui/public/index.html
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
8
|
<title>Zen GitSync</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
-
<link rel="modulepreload" crossorigin href="/assets/vendor-
|
|
11
|
-
<link rel="stylesheet" crossorigin href="/assets/vendor-
|
|
12
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-Bwje85Kx.js"></script>
|
|
10
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-CysQL2Yr.js">
|
|
11
|
+
<link rel="stylesheet" crossorigin href="/assets/vendor-B1z91bUn.css">
|
|
12
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CFnuGkZZ.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
15
15
|
<div id="app"></div>
|
package/src/ui/server/index.js
CHANGED
|
@@ -1869,7 +1869,8 @@ async function startUIServer(noOpen = false, savePort = false) {
|
|
|
1869
1869
|
id,
|
|
1870
1870
|
name: orchestration.name,
|
|
1871
1871
|
description: orchestration.description || '',
|
|
1872
|
-
steps: orchestration.steps
|
|
1872
|
+
steps: orchestration.steps,
|
|
1873
|
+
flowData: orchestration.flowData || null
|
|
1873
1874
|
}
|
|
1874
1875
|
|
|
1875
1876
|
config.orchestrations.push(newOrchestration)
|
|
@@ -1924,7 +1925,8 @@ async function startUIServer(noOpen = false, savePort = false) {
|
|
|
1924
1925
|
id,
|
|
1925
1926
|
name: orchestration.name,
|
|
1926
1927
|
description: orchestration.description || '',
|
|
1927
|
-
steps: orchestration.steps
|
|
1928
|
+
steps: orchestration.steps,
|
|
1929
|
+
flowData: orchestration.flowData || null
|
|
1928
1930
|
}
|
|
1929
1931
|
await configManager.saveConfig(config)
|
|
1930
1932
|
} else {
|