We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After updating aurelia-validatejs I got error undefined:1 Uncaught (in promise) Error: Cannot set property 'configurable' of undefined https://gyazo.com/a60d0c503bbad66d8e8e4050b65dfefd
undefined:1 Uncaught (in promise) Error: Cannot set property 'configurable' of undefined
its the decorator that fails when adding the rule:
function addRule(target, key, descriptor, targetOrConfig, rule) { var rules = _aureliaMetadata.metadata.getOrCreateOwn(metadataKey, ValidationRules, target); if (targetOrConfig === null || targetOrConfig === undefined) { targetOrConfig = true; } rules.addRule(key, rule(targetOrConfig)); descriptor.configurable = true; <---------------- fails here }
The descriptor is undefined
undefined
The text was updated successfully, but these errors were encountered:
@PWKad or @jdanyow Could you please take a look?
Sorry, something went wrong.
Have the same error...
1786807
No branches or pull requests
After updating aurelia-validatejs I got error
undefined:1 Uncaught (in promise) Error: Cannot set property 'configurable' of undefined
https://gyazo.com/a60d0c503bbad66d8e8e4050b65dfefdits the decorator that fails when adding the rule:
The descriptor is
undefined
The text was updated successfully, but these errors were encountered: