Skip to content

Commit

Permalink
fix: make OrgChartState serializable
Browse files Browse the repository at this point in the history
Close #76
  • Loading branch information
javier-godoy committed Apr 3, 2024
1 parent dd9c6f7 commit e929baf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@

import com.flowingcode.vaadin.addons.orgchart.client.constants.ChartConstants;
import com.flowingcode.vaadin.addons.orgchart.client.enums.ChartDirectionEnum;
import java.io.Serializable;

/** @author pbartolo */
@SuppressWarnings("serial")
public class OrgChartState {
public class OrgChartState implements Serializable {

public String value;

Expand Down

0 comments on commit e929baf

Please sign in to comment.