You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This layout feature request is mostly related to JsonGroovyBuilder when layout is build.
When you do:
items(){
...
}
json looks like "items:{}".
If you do:
items(){
...
}
items(){
...
}
json looks like "items:[{},{}]".
Remove limitation that case like this needs to be array even if there's only one object per array. This allows JS to play nicely with JsonGroovyBuilder. Also check other places in layout structure where similar change make sense.
The text was updated successfully, but these errors were encountered:
This layout feature request is mostly related to JsonGroovyBuilder when layout is build.
When you do:
items(){
...
}
json looks like "items:{}".
If you do:
items(){
...
}
items(){
...
}
json looks like "items:[{},{}]".
Remove limitation that case like this needs to be array even if there's only one object per array. This allows JS to play nicely with JsonGroovyBuilder. Also check other places in layout structure where similar change make sense.
The text was updated successfully, but these errors were encountered: