-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
fix: display multi-instance configuration in properties panel #27
Conversation
@@ -48,7 +53,7 @@ export default class ElementTemplatesPropertiesProvider { | |||
}; | |||
|
|||
// (1) Add templates group | |||
addGroupsAfter('documentation', groups, [ templatesGroup ]); | |||
addGroupsAfter(ALWAYS_DISPLAYED_GROUPS, groups, [ templatesGroup ]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a side effect, the template group is displayed above "Documentation". There were no tests about this, so I assumed the value was included by accident. Also, in the old properties panel "Catalog" was displayed above "Documentation".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Documentation is gone as soon as one applies a template.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works 🚀
Related to camunda/camunda-modeler#3396