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
If you create a decorator command that uses properties but you don't supply a type option then the decorator is applied to the parent declaration.
properties
type
It should be possible to not supply the type option in the command.
This decorator command fails to apply to the favoriteColor property, instead is gets applied to the Driver declaration.
favoriteColor
Driver
{ "$class": "[email protected]", "type": "UPSERT", "target": { "$class": "[email protected]", "namespace": "[email protected]", "declaration": "Driver", "properties": ["favoriteColor"] }, "decorator": { "$class": "[email protected]", "name": "Preference", "arguments": [] } }
The text was updated successfully, but these errors were encountered:
dselman
Successfully merging a pull request may close this issue.
Bug Report 🐛
If you create a decorator command that uses
properties
but you don't supply atype
option then the decorator is applied to the parent declaration.Expected Behavior
It should be possible to not supply the
type
option in the command.Current Behavior
This decorator command fails to apply to the
favoriteColor
property, instead is gets applied to theDriver
declaration.Possible Solution
Steps to Reproduce
Context (Environment)
Desktop
Detailed Description
Possible Implementation
The text was updated successfully, but these errors were encountered: