Skip to content

Commit

Permalink
refactor: make class serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
flang authored and paodb committed Dec 21, 2023
1 parent 1689780 commit 20188ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package com.flowingcode.vaadin.addons.gridexporter;

import com.vaadin.flow.component.Component;
import java.io.Serializable;

/**
* Item that can be added to {@link FooterToolbar}.
* <p>
* Default position is {@link FooterToolbarItemPosition.AFTER_EXPORT_BUTTONS}
*/
public class FooterToolbarItem {
public class FooterToolbarItem implements Serializable {

private final Component component;

Expand Down

0 comments on commit 20188ca

Please sign in to comment.