Skip to content

Commit

Permalink
Fixes #113 - If Update Action throws IllegalArgumentException Excepti…
Browse files Browse the repository at this point in the history
…on is swallowed
  • Loading branch information
alejandro-du committed Aug 29, 2023
1 parent dd02412 commit 8dab7ee
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion add-on/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.vaadin.crudui</groupId>
<artifactId>crudui</artifactId>
<packaging>jar</packaging>
<version>7.1.0</version>
<version>7.1.1</version>
<name>Crud UI Add-on</name>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ protected void updateButtonClicked() {
grid.deselect(updatedObject);
showNotification(savedMessage);
// TODO: grid.scrollTo(updatedObject);
} catch (IllegalArgumentException ignore) {
} catch (CrudOperationException e1) {
refreshGrid();
showNotification(e1.getMessage());
Expand Down
2 changes: 1 addition & 1 deletion crud-ui-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.vaadin.crudui</groupId>
<artifactId>crudui</artifactId>
<version>7.1.0</version>
<version>7.1.1</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 8dab7ee

Please sign in to comment.