mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
fix split on null
This commit is contained in:
+1
-1
@@ -211,7 +211,7 @@ export async function handleFile(
|
||||
path: remotePath.replaceAll("\\", "/"),
|
||||
summary: typed?.summary ?? "",
|
||||
kind: typed?.kind,
|
||||
lock: lockfileUseArray ? typed?.lock.split("\n") : typed?.lock,
|
||||
lock: lockfileUseArray ? typed?.lock?.split("\n") : typed?.lock,
|
||||
parent_hash: undefined,
|
||||
schema: typed?.schema,
|
||||
tag: typed?.tag,
|
||||
|
||||
Reference in New Issue
Block a user