Skip to content
Snippets Groups Projects
Commit c9458ad0 authored by Kelly Kelly's avatar Kelly Kelly
Browse files

Other timeline descriptions will show displayName instead of Type

parent 0adddb83
No related branches found
No related tags found
No related merge requests found
...@@ -695,7 +695,7 @@ private Optional<TimelineEvent> addOtherEventDesc(BlackboardArtifact artifact) t ...@@ -695,7 +695,7 @@ private Optional<TimelineEvent> addOtherEventDesc(BlackboardArtifact artifact) t
return Optional.empty(); return Optional.empty();
} }
String description = String.format("%s: %d", artifact.getArtifactTypeName(), artifact.getId()); String description = String.format("%s: %d", artifact.getDisplayName(), artifact.getId());
TimelineEventDescriptionWithTime evtWDesc = new TimelineEventDescriptionWithTime(timeVal, description, description, description); TimelineEventDescriptionWithTime evtWDesc = new TimelineEventDescriptionWithTime(timeVal, description, description, description);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment