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
The expected when using Config.value is use the default value when no value was passed. Using WebComponents.
Config.value
value: Config.string().value('primary');
Result:
this.value; // primary
When no value was passed the value is null.
null
this.value; // null
The text was updated successfully, but these errors were encountered:
Default STATE values should be preserved when rendering web components.
11eea70
Fixes metal#305
Merge pull request #309 from Robert-Frampton/webcomp_state
d8fe8a5
Default STATE values should be preserved when rendering web components. Fixes #305
dcc640b
No branches or pull requests
Expected behavior
The expected when using
Config.value
is use the default value when no value was passed. Using WebComponents.Result:
Current behavior
When no value was passed the value is
null
.The text was updated successfully, but these errors were encountered: