You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: compute client-side feature flag values at runtime
Activating a feature flag in the project does not work when a default bundle
is used because the values of the flags sent to the client are hard-coded at
bundle build time. Additionally, if a feature flag is active during bundle
creation, it remains active on the client side even if the project does not
activate it in the `vaadin-featureflags.properties` file.
This change ensures that feature flags in the frontend bundle are always
disabled initially and are activated on page load based on the current
project settings.
Fixes#20991
0 commit comments