From b7a2afe1c1a69424add6bac6c5d4236c67ba83e6 Mon Sep 17 00:00:00 2001 From: keerecles Date: Thu, 20 Oct 2022 20:31:58 +0800 Subject: [PATCH] eTS Card form type Signed-off-by: keerecles Change-Id: I6ab25277016ec34bd0f4e31388975ab14a7e7af2 --- modulecheck/forms.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index 404d2789..6ebed43b 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -22,6 +22,7 @@ "enum": [ "name", "description", + "type", "src", "window", "colorMode", @@ -152,6 +153,15 @@ "type": "boolean", "default": false }, + "type": { + "description": "This tag identifies the card type.", + "type": "string", + "enum": [ + "JS", + "eTS" + ], + "default": "JS" + }, "src": { "description": "Indicates the src of form.", "type": "string" -- Gitee