From cbaa350e8edba4ea18c842357cbe4502a8abe691 Mon Sep 17 00:00:00 2001 From: kate Date: Fri, 13 Dec 2019 15:33:03 +0100 Subject: [PATCH] "no application attached" fix for dashboard page --- .../com/evolveum/midpoint/web/page/self/PageSelfDashboard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/self/PageSelfDashboard.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/self/PageSelfDashboard.java index 9efca9517b9..3cfe3485d9a 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/self/PageSelfDashboard.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/self/PageSelfDashboard.java @@ -631,7 +631,7 @@ private AssignmentItemDto createAssignmentItem(PrismObject user, return new AssignmentItemDto(null, null, null, null); } - String name = WebComponentUtil.getDisplayNameOrName(value, true, getLocalizationService()); + String name = WebComponentUtil.getDisplayNameOrName(value, false); AssignmentEditorDtoType type = AssignmentEditorDtoType.getType(value.getCompileTimeClass()); String relation = refValue.getRelation() != null ? refValue.getRelation().getLocalPart() : null;