Compare commits

...

2 Commits

Author SHA1 Message Date
wendrul
ba775edef2 Merge remote-tracking branch 'origin/main' into folder-deploy
# Conflicts:
#	frontend/src/lib/utils_workspace_deploy.ts
2026-04-02 15:39:36 +02:00
wendrul
91f0a564b9 fix: deployment UIs for folders 2026-04-02 15:33:12 +02:00

View File

@@ -132,10 +132,14 @@
} }
}) })
for (const dep of sortedSet) { for (const dep of sortedSet) {
allAlreadyExists[computeStatusPath(dep.kind, dep.path)] = await checkAlreadyExists( try {
dep.kind, allAlreadyExists[computeStatusPath(dep.kind, dep.path)] = await checkAlreadyExists(
dep.path dep.kind,
) dep.path
)
} catch {
allAlreadyExists[computeStatusPath(dep.kind, dep.path)] = false
}
} }
dependencies = sortedSet.map((x) => ({ dependencies = sortedSet.map((x) => ({
...x, ...x,