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
To get it working at all I changed validator.js (line 387) from: else if (value.value) {
to: else if (value.value !== undefined && value.value !== null) {
Another issue had something to do with namespacing which I don't really understand. Somehow my own type caused an assertion. To get around that I added (to the namespacedName function in the xsd.js file):
I have the following xsd schema which fails.
Expected result would probably be:
To get it working at all I changed validator.js (line 387) from:
else if (value.value) {
to:
else if (value.value !== undefined && value.value !== null) {
Another issue had something to do with namespacing which I don't really understand. Somehow my own type caused an assertion. To get around that I added (to the namespacedName function in the xsd.js file):
If you could give me some feedback I would love to turn it into a pull request.
The text was updated successfully, but these errors were encountered: