fix: saving image schema items

This commit is contained in:
2025-10-05 13:44:50 +01:00
parent 980b42aa44
commit 015a7cb5cd
6 changed files with 48 additions and 14 deletions

View File

@@ -222,7 +222,7 @@ const stackValidator = strictObject({
Name: string(),
Images: array(stackImage),
Images: pipe(nullable(array(stackImage)), transform(l => l ?? [])),
SchemaItems: array(stackSchemaItem),
});