Skip to content

Commit

Permalink
fix prop name in options control
Browse files Browse the repository at this point in the history
  • Loading branch information
jsartisan committed Oct 30, 2024
1 parent e7e3d5e commit 1e16edb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class OptionControl extends BaseControl<ControlProps> {
options: SegmentedControlOption[],
isUpdatedViaKeyboard = false,
) => {
this.updateProperty("options", options, isUpdatedViaKeyboard);
this.updateProperty(this.props.propertyName, options, isUpdatedViaKeyboard);
};

static getControlType() {
Expand Down

0 comments on commit 1e16edb

Please sign in to comment.