From 2585bdccc4f4fb79c256603e59779796cca6d905 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Sun, 14 Dec 2025 10:34:39 +0100 Subject: [PATCH] fix(schema): allow numbers in for loop lists --- website/src/public/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/public/schema.json b/website/src/public/schema.json index f47f769e..888052d5 100644 --- a/website/src/public/schema.json +++ b/website/src/public/schema.json @@ -494,7 +494,7 @@ "description": "A list of values to iterate over", "type": "array", "items": { - "type": "string" + "type": ["string", "number"] } }, "for_attribute": {