Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
Use target datasource for remove action #123
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Artemev committed Jan 19, 2022
1 parent 57342fe commit 09a6dfb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -326,7 +326,7 @@ public void setConfirmationTitle(String confirmationTitle) {
}

protected void doRemove(Set<Entity> selected, boolean autocommit) {
CollectionDatasource datasource = null/*target.getDatasource() TODO: legac-ui*/;
CollectionDatasource datasource = target.getDatasource();
for (Entity item : selected) {
datasource.removeItem(item);
}
Expand Down

0 comments on commit 09a6dfb

Please sign in to comment.