Hi!
I have two entity, Bank and Currency, standard browse screens for them, and repositories extending JmixDataRepository.
I’m creating some data of type Bank with bankRepository.create() and saving it using saveAll(). Then, if I first open BankBrowse from the main menu of my app to see the results, and then I try to open CurrencyBrowse, I get an exception:
ClassCastException: CurrencyBrowse incompatible with BankBrowse
Why on Earth could my app ever cast BankBrowse to CurrencyBrowse? Since I didn’t do anything with the browsers, do I get the error because of some incorrect manipulations with the data?