fix build
This commit is contained in:
parent
f8d70c4ab7
commit
1657824285
2 changed files with 5 additions and 4 deletions
6
pom.xml
6
pom.xml
|
@ -70,7 +70,7 @@
|
||||||
<profile>
|
<profile>
|
||||||
<id>let_reporting</id>
|
<id>let_reporting</id>
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>17</java.version>
|
<java.version>1.8</java.version>
|
||||||
</properties>
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -79,8 +79,8 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>17</source>
|
<source>1.8</source>
|
||||||
<target>17</target>
|
<target>1.8</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
|
|
@ -637,7 +637,8 @@ public class EntityTable<ROW extends ModelIdAware> {
|
||||||
|
|
||||||
private void adaptColumnWidthChange(final Event event) {
|
private void adaptColumnWidthChange(final Event event) {
|
||||||
final Widget widget = event.widget;
|
final Widget widget = event.widget;
|
||||||
if (widget instanceof final TableColumn tableColumn) {
|
if (widget instanceof TableColumn) {
|
||||||
|
final TableColumn tableColumn = ((TableColumn) widget);
|
||||||
if (this.filter != null) {
|
if (this.filter != null) {
|
||||||
this.filter.adaptColumnWidth(
|
this.filter.adaptColumnWidth(
|
||||||
this.table.indexOf(tableColumn),
|
this.table.indexOf(tableColumn),
|
||||||
|
|
Loading…
Reference in a new issue