@@ -154,17 +154,16 @@ void checkLayout(JsonNode tree) {
154154
155155 for (Entry <String , JsonNode > e : IteratorUtils .toList (tree .fields ())) {
156156 // System.out.println(e);
157- Assertions
158- .assertTrue (Arrays
159- .asList ("ID" , "widget" , "text" , "title" , "pageLayout" , "readOnly" , "tooltip" , "icon" ,
160- "icons" , "href" , "children" , "database" , "table" , "schema" , "chart" , "query" ,
161- "arguments" , "fxHide" , "display" , "prop" , "createSchema" , "columns" , "roles" ,
162- "if" , "context" , "properties" , "deleteConfirmation" , "print" , "navigate" ,
163- "markdown" , "layout" , "style" , "class" , /* schema info in config.json */ "name" ,
164- "parent" , /* gridster stuff */ "x" , "y" , "rows" , "cols" ,
165- /* redraw container */ "redrawInterval" , "expression" , "html" , "script" ,
166- "hideframe" , "clearCache" , "card" , "size" , "cached" , "onChat" )
167- .contains (e .getKey ()));
157+ Assertions .assertTrue (Arrays
158+ .asList ("ID" , "widget" , "text" , "title" , "pageLayout" , "readOnly" , "tooltip" , "icon" ,
159+ "icons" , "href" , "children" , "database" , "table" , "schema" , "chart" , "query" ,
160+ "arguments" , "fxHide" , "display" , "prop" , "createSchema" , "columns" , "roles" , "if" ,
161+ "context" , "properties" , "deleteConfirmation" , "print" , "navigate" , "markdown" ,
162+ "layout" , "style" , "class" , /* schema info in config.json */ "name" , "parent" ,
163+ /* gridster stuff */ "x" , "y" , "rows" , "cols" ,
164+ /* redraw container */ "redrawInterval" , "expression" , "html" , "script" , "hideframe" ,
165+ "clearCache" , "card" , "size" , "cached" , "onChat" , "uploadEnabled" )
166+ .contains (e .getKey ()));
168167 if (e .getKey ().equals ("url" ))
169168 Assertions .assertTrue (e .getValue () instanceof TextNode );
170169 }
0 commit comments