Skip to content

Commit

Permalink
Upped versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Sep 29, 2023
1 parent c2c41ea commit e2bf804
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
3 changes: 1 addition & 2 deletions magnolia-vpro-ui-poms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
<version>1.10-SNAPSHOT</version>
</parent>
<artifactId>magnolia-vpro-ui-poms</artifactId>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>nl.vpro.poms</groupId>
<artifactId>poms-bom</artifactId>
<version>7.6.4</version>
<version>7.7.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion magnolia-vpro-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>info.magnolia.dam</groupId>
<artifactId>magnolia-dam-app</artifactId>
<version>3.0.25</version>
<version>3.0.26</version>
<optional>true</optional>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
*/
package nl.vpro.magnolia.ui.enumfield;

import java.net.URI;

import com.vaadin.data.ValueContext;

import nl.vpro.i18n.Displayable;
import nl.vpro.i18n.Locales;

Expand All @@ -41,7 +44,7 @@ public String convertToPresentation(E value, ValueContext context) {

@Override
public String getIcon(E value) {
return value.getIcon().orElse(null);
return value.getIcon().map(URI::toString).orElse(null);
}

@Override
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<magnolia.ui.version>6.2.38</magnolia.ui.version>
<vpro.shared.version>3.5.4</vpro.shared.version>
<magnolia.ui.version>6.2.39</magnolia.ui.version>
<vpro.shared.version>4.0.0</vpro.shared.version>
</properties>

<build>
Expand Down Expand Up @@ -152,7 +152,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit e2bf804

Please sign in to comment.