From fe1f43e84351324edf06a44095af4ca4d1879ccf Mon Sep 17 00:00:00 2001 From: zhangdezhou Date: Tue, 24 Jun 2025 01:46:55 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0disabledDesktopBehaviors?= =?UTF-8?q?=E4=B8=BA=E6=9E=9A=E4=B8=BE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhangdezhou --- modulecheck/forms.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index 7c07e13d..a3943553 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -371,9 +371,16 @@ }, "disabledDesktopBehaviors": { "description": "Indicates disabled desktop behaviors, only takes effect for system app.", - "type": "string", - "pattern": "^[A-Z_|]+$", - "maxLength": 255 + "type": "array", + "items": { + "type": "string", + "enum": [ + "SWIPE_DESKTOP", + "PULL_DOWN_SEARCH", + "LONG_CLICK", + "DRAG" + ] + } } } } -- Gitee