Skip to content

Commit e929baf

Browse files
committed
fix: make OrgChartState serializable
Close #76
1 parent dd9c6f7 commit e929baf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/flowingcode/vaadin/addons/orgchart/client/OrgChartState.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222

2323
import com.flowingcode.vaadin.addons.orgchart.client.constants.ChartConstants;
2424
import com.flowingcode.vaadin.addons.orgchart.client.enums.ChartDirectionEnum;
25+
import java.io.Serializable;
2526

2627
/** @author pbartolo */
2728
@SuppressWarnings("serial")
28-
public class OrgChartState {
29+
public class OrgChartState implements Serializable {
2930

3031
public String value;
3132

0 commit comments

Comments
 (0)