From ec2c88ac2d65ea1db1146101519cdbb709ebdbbb Mon Sep 17 00:00:00 2001 From: David van der Sluijs Date: Fri, 14 Jan 2022 15:54:14 +0100 Subject: [PATCH] fix: include missing type string in config schema (#2142) Inside the config.schema.json under the CORS setting, add the missing type (string) for the items of the allowed_origins array --- embedx/config.schema.json | 1 + 1 file changed, 1 insertion(+) diff --git a/embedx/config.schema.json b/embedx/config.schema.json index eafad4ae6984..ecd8563e338d 100644 --- a/embedx/config.schema.json +++ b/embedx/config.schema.json @@ -1449,6 +1449,7 @@ }, "anyOf": [ { + "type": "string", "format": "uri" }, {