-
Notifications
You must be signed in to change notification settings - Fork 4
UKY CS 499 Project: Feature support for plugin. #160
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
base: develop_uky
Are you sure you want to change the base?
UKY CS 499 Project: Feature support for plugin. #160
Conversation
There are some more things that have to be done at first sight:
|
src/main/java/com/hpe/adm/octane/ideplugins/intellij/ui/tabbedpane/TabbedPanePresenter.java
Outdated
Show resolved
Hide resolved
src/main/java/com/hpe/adm/octane/ideplugins/intellij/ui/treetable/EntityTreeTablePresenter.java
Outdated
Show resolved
Hide resolved
Made changes requested in comments. |
@@ -518,6 +519,8 @@ private EntityTreeModel createEntityTreeModel(Collection<EntityModel> entityMode | |||
entityCategories.add(new UserItemEntityCategory("Tests", Entity.GHERKIN_TEST, Entity.MANUAL_TEST, Entity.BDD_SCENARIO)); | |||
entityCategories.add(new UserItemEntityCategory("Mention in comments", Entity.COMMENT)); | |||
|
|||
entityCategories.add(new UserItemEntityCategory("Features", Entity.FEATURE)); |
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.
Are the Features category right under the Backlog Items in UI?
If not, please move it like that. In theory the order of the items in the entityCategories list should define the order in UI.
Make sure that you do it for EntitySearchResultPresenter also.
Regarding my last comment, there are some things that are not changed.
|
Enabled viewing of the Feature type to the MyWork tab in IntelliJ, as well as opening the detail tab for a Feature.