Skip to content

Commit

Permalink
fix: fix super call in SlideChangeEvent constructor
Browse files Browse the repository at this point in the history
Close #17
  • Loading branch information
paodb committed Jul 21, 2021
1 parent 197af24 commit 589d8e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public static class SlideChangeEvent extends ComponentEvent<Carousel> {

public SlideChangeEvent(
Carousel source, boolean fromClient, @EventData("event.detail.value") String position) {
super(source, true);
super(source, fromClient);
this.position = position;
}

Expand Down

0 comments on commit 589d8e5

Please sign in to comment.