Skip to content

Commit

Permalink
Make error message a bit more neutral
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jun 8, 2021
1 parent bb23c43 commit 2f88c9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected void handlePostAsync(RoutingContext event, MultiMap form) throws Excep
}
SearchMapping mapping = HibernateSearchSupplier.searchMapping();
if (mapping == null) {
flashMessage(event, "There aren't any indexed entity types!", FlashScopeUtil.FlashMessageStatus.ERROR);
flashMessage(event, "There are no indexed entity types.", FlashScopeUtil.FlashMessageStatus.ERROR);
return;
}
mapping.scope(Object.class,
Expand Down

0 comments on commit 2f88c9b

Please sign in to comment.