From 4382a17352869bb1f33e020ac281d04aa15a8e8f Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 29 Sep 2023 03:49:34 -0700 Subject: [PATCH] [Schema] Fix incorrect default value for 'allowEmpty' (#16040) --- doc/cascadia/profiles.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cascadia/profiles.schema.json b/doc/cascadia/profiles.schema.json index 6f3d62fa29..9dc3a8afd5 100644 --- a/doc/cascadia/profiles.schema.json +++ b/doc/cascadia/profiles.schema.json @@ -673,7 +673,7 @@ }, "allowEmpty": { "description": "Whether to render a folder without entries, or to hide it", - "default": "false", + "default": false, "type": "boolean" } }