Skip to content

Commit

Permalink
#5283 - Improve usability of interactive recommender sidebar
Browse files Browse the repository at this point in the history
- Fix NPE
  • Loading branch information
reckart committed Mar 4, 2025
1 parent 3ee308e commit dc9335e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private List<Recommender> listInteractiveRecommenders()

private List<AnnotationFeature> listFeatures()
{
if (recommender == null) {
if (recommender == null && recommender.getObject() != null) {
return emptyList();
}

Expand Down

0 comments on commit dc9335e

Please sign in to comment.