Skip to content

Commit

Permalink
rename feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Jan 17, 2025
1 parent 889a375 commit 4c03c0b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ public class FeatureFlags implements Serializable {
"React 19 (default in Vaadin 25)", "react19",
"https://react.dev/blog/2024/12/05/react-19", true, null);

public static final Feature FOCUSABLE_DISABLED_COMPONENTS = new Feature(
"Focusable disabled components", "focusableDisabledComponents",
public static final Feature ACCESSIBLE_DISABLED_BUTTONS = new Feature(
"Accessible disabled buttons", "accessibleDisabledButtons",
"https://github.com/vaadin/web-components/issues/4585", true, null);

private List<Feature> features = new ArrayList<>();
Expand Down Expand Up @@ -132,7 +132,7 @@ public FeatureFlags(Lookup lookup) {
features.add(new Feature(DASHBOARD_COMPONENT));
features.add(new Feature(CARD_COMPONENT));
features.add(new Feature(REACT19));
features.add(new Feature(FOCUSABLE_DISABLED_COMPONENTS));
features.add(new Feature(ACCESSIBLE_DISABLED_BUTTONS));
loadProperties();
}

Expand Down

0 comments on commit 4c03c0b

Please sign in to comment.