File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/main/kotlin/org/axonframework/intellij/ide/plugin/markers Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 3
3
# Axon Framework plugin Changelog
4
4
5
5
## [ 0.8.8]
6
+ - Fix classes not rendering the correct value in popup of classes
6
7
- Plugin is now compatible with IDEA 2024.3 (IDEA 243.* ) with minimum version of 2024.2
7
8
- Fix various deprecation warnings
8
9
- Fix various javadoc issues
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ class ClassLineMarkerProvider : LineMarkerProvider {
55
55
val publishers = element.creatorResolver().getCreatorsForPayload(qualifiedName)
56
56
handlers + publishers
57
57
})
58
+ .setTargetRenderer { AxonNavigationTargetRenderer .INSTANCE }
58
59
.createLineMarkerInfo(element)
59
60
}
60
61
}
@@ -67,6 +68,7 @@ class ClassLineMarkerProvider : LineMarkerProvider {
67
68
.setTooltipText(" Navigate to entities in the same command model hierarchy" )
68
69
.setEmptyPopupText(" No related entities were found" )
69
70
.setTargets(NotNullLazyValue .lazy { items })
71
+ .setTargetRenderer { AxonNavigationTargetRenderer .INSTANCE }
70
72
.createLineMarkerInfo(element)
71
73
}
72
74
You can’t perform that action at this time.
0 commit comments