From fec8c3a3afc76887c7e72127c0cffe9dc6d84a3e Mon Sep 17 00:00:00 2001 From: shilei Date: Thu, 30 Jun 2022 10:58:05 +0800 Subject: [PATCH] fix problem Signed-off-by: shilei Change-Id: Id4f9e604ba17010f877da4de67264e58f0867674 --- modulecheck/module.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/modulecheck/module.json b/modulecheck/module.json index 62479972..92065393 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -506,32 +506,38 @@ "maxWindowRatio": { "description": "This tag identifies the max window ratio. The value is an number.", "type": "number", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "minWindowRatio": { "description": "This tag identifies the min window ratio. The value is an number.", "type": "number", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "maxWindowWidth": { "description": "This tag identifies the min window ratio. The value is an integer.", "type": "integer", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "minWindowWidth": { "description": "This tag identifies the min window ratio. The value is an integer.", "type": "integer", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "maxWindowHeight": { "description": "This tag identifies the min window ratio. The value is an integer.", "type": "integer", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "minWindowHeight": { "description": "This tag identifies the min window ratio. The value is an integer.", "type": "integer", - "minimum": 0 + "minimum": 0, + "maximum": 2147483647 }, "excludeFromMissions": { "description": "Specifies whether to display in the recent missions list. For system application only.", -- Gitee