Skip to content

Commit

Permalink
Merge pull request #222 from GwtMaterialDesign/release_2.8.0
Browse files Browse the repository at this point in the history
Release 2.8.0
  • Loading branch information
kevzlou7979 authored Nov 2, 2023
2 parents e416ae8 + 91b6ece commit 91648dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ A complex table component designed for the material design specifications!
Support documentation can be found [here](https://github.com/GwtMaterialDesign/gwt-material-table/wiki)

## Maven
Current Version 2.8.1
Current Version 2.8.3
```xml
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material-table</artifactId>
<version>2.8.1</version>
<version>2.8.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>gwt-material-parent</artifactId>
<groupId>com.github.gwtmaterialdesign</groupId>
<version>2.8.1</version>
<version>2.8.3</version>
</parent>

<artifactId>gwt-material-table</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public DataView<T> getDataView() {
}

public CategoryComponent<T> getCategory() {
return categoryInfo != null ? dataView.getCategoryById(categoryInfo.getId().toString()) : null;
return categoryInfo != null && categoryInfo.getId() != null ? dataView.getCategoryById(categoryInfo.getId().toString()) : null;
}

public String getCategoryName() {
Expand Down

0 comments on commit 91648dd

Please sign in to comment.