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
It is easy for a developer to forget to match up the elements in the elements map with the elements in the models. After loading the config, validate that all the elements match up and that there is no redundancy.
This is an invalid config because a is defined and not used, and b is refered to in the models but not declared.
{
"elements" : {
"a" : "a"
},
"models" : [
{
"element" : "b"
}
]
}
The text was updated successfully, but these errors were encountered:
It is easy for a developer to forget to match up the elements in the elements map with the elements in the models. After loading the config, validate that all the elements match up and that there is no redundancy.
This is an invalid config because
a
is defined and not used, andb
is refered to in the models but not declared.The text was updated successfully, but these errors were encountered: