Skip to content

Commit

Permalink
Minor fix for role-mining
Browse files Browse the repository at this point in the history
  • Loading branch information
tchrapovic committed Sep 26, 2023
1 parent 8ff114c commit e5586bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ public void onClose(AjaxRequestTarget ajaxRequestTarget) {
}

};

analyzedMembersDetailsPanel.add(AttributeAppender.replace("class","d-inline-block text-truncate"));
analyzedMembersDetailsPanel.add(AttributeAppender.replace("style","width:145px"));
analyzedMembersDetailsPanel.setOutputMarkupId(true);
item.add(analyzedMembersDetailsPanel);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ public void onClose(AjaxRequestTarget ajaxRequestTarget) {
}

};

analyzedMembersDetailsPanel.add(AttributeAppender.replace("class","d-inline-block text-truncate"));
analyzedMembersDetailsPanel.add(AttributeAppender.replace("style","width:145px"));
analyzedMembersDetailsPanel.setOutputMarkupId(true);
item.add(analyzedMembersDetailsPanel);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ public static void clusterMigrationRecompute(@NotNull PageBase pageBase, @NotNul

modifications.add(pageBase.getPrismContext().deltaFor(RoleAnalysisClusterType.class)
.item(RoleAnalysisClusterType.F_CLUSTER_STATISTICS, AnalysisClusterStatisticType.F_DETECTED_REDUCTION_METRIC)
.replace(0)
.replace(0.0)
.asItemDelta());

ref = new ObjectReferenceType();
Expand Down

0 comments on commit e5586bf

Please sign in to comment.