Skip to content
Snippets Groups Projects
Commit f012fd45 authored by Barbara B. Frosik's avatar Barbara B. Frosik
Browse files

changed getListDataModel in CrudEntityController to rebuild the model every time

parent 3ef60515
No related branches found
No related tags found
No related merge requests found
......@@ -206,9 +206,8 @@ public abstract class CrudEntityController<EntityType extends CloneableEntity, F
}
public DataModel getListDataModel() {
if (listDataModel == null) {
listDataModel = createListDataModel();
}
resetListDataModel();
listDataModel = createListDataModel();
return listDataModel;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment