mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 16:27:02 -06:00
FeatureToggle: Add awsDatasourcesNewFormStyling feature toggle (#76110)
This commit is contained in:
parent
f012b75a3a
commit
2771fb9403
@ -149,6 +149,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists |
|
||||
| `navAdminSubsections` | Splits the administration section of the nav tree into subsections |
|
||||
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression |
|
||||
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -142,4 +142,5 @@ export interface FeatureToggles {
|
||||
kubernetesPlaylists?: boolean;
|
||||
navAdminSubsections?: boolean;
|
||||
recoveryThreshold?: boolean;
|
||||
awsDatasourcesNewFormStyling?: boolean;
|
||||
}
|
||||
|
@ -867,5 +867,12 @@ var (
|
||||
Owner: grafanaAlertingSquad,
|
||||
RequiresRestart: true,
|
||||
},
|
||||
{
|
||||
Name: "awsDatasourcesNewFormStyling",
|
||||
Description: "Applies new form styling for configuration and query editors in AWS plugins",
|
||||
Stage: FeatureStageExperimental,
|
||||
FrontendOnly: true,
|
||||
Owner: awsDatasourcesSquad,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -123,3 +123,4 @@ transformationsVariableSupport,experimental,@grafana/grafana-bi-squad,false,fals
|
||||
kubernetesPlaylists,experimental,@grafana/grafana-app-platform-squad,false,false,false,true
|
||||
navAdminSubsections,experimental,@grafana/grafana-frontend-platform,false,false,false,false
|
||||
recoveryThreshold,experimental,@grafana/alerting-squad,false,false,true,false
|
||||
awsDatasourcesNewFormStyling,experimental,@grafana/aws-datasources,false,false,false,true
|
||||
|
|
@ -502,4 +502,8 @@ const (
|
||||
// FlagRecoveryThreshold
|
||||
// Enables feature recovery threshold (aka hysteresis) for threshold server-side expression
|
||||
FlagRecoveryThreshold = "recoveryThreshold"
|
||||
|
||||
// FlagAwsDatasourcesNewFormStyling
|
||||
// Applies new form styling for configuration and query editors in AWS plugins
|
||||
FlagAwsDatasourcesNewFormStyling = "awsDatasourcesNewFormStyling"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user