From 1e404457d94a33c1c10455c8db5c8e6d3a13c864 Mon Sep 17 00:00:00 2001 From: Mira Grudzinska Date: Tue, 18 Jun 2024 22:15:22 +0200 Subject: [PATCH] Fix the composite enum --- docs/schema/constants/composite.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/schema/constants/composite.json b/docs/schema/constants/composite.json index 3ebb5d2e..55079293 100644 --- a/docs/schema/constants/composite.json +++ b/docs/schema/constants/composite.json @@ -5,11 +5,13 @@ "description": "How to stack copies in a repeater", "oneOf": [ { - "title": "Above", + "title": "Below", + "description": "Subsequent copies are added underneath the previous ones.", "const": 1 }, { - "title": "Below", + "title": "Above", + "description": "Subsequent copies are added on top of the previous ones.", "const": 2 } ]