Hello,
Clicking the button takes an action, but it returns this error. Below is the screenshot and code.
Version: Jmix 1.5 flowui
@Subscribe
public void onInit(InitEvent event) {
CreateAction<User> registerPerson = new CreateAction<>();
registerPerson.setOpenMode(OpenMode.NAVIGATION);
registerPerson.setViewClass(SignupDetailsView.class);
registerPerson.setText(messageBundle.getMessage("continue"));
selectPersonTypeButton.setAction(registerPerson);
}