UI: Disable tabular numbers toggle by default (#107911)

* UI: disable tabular numbers toggle

* gen
pull/107923/head
Josh Hunt 2 weeks ago committed by GitHub
parent a7aed23d47
commit 0cde9e4f3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 2
      packages/grafana-data/src/types/featureToggles.gen.ts
  3. 2
      pkg/services/featuremgmt/registry.go
  4. 6
      pkg/services/featuremgmt/toggles_gen.json

@ -82,7 +82,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
| `alertingMigrationUI` | Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules | Yes | | `alertingMigrationUI` | Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules | Yes |
| `alertingImportYAMLUI` | Enables a UI feature for importing rules from a Prometheus file to Grafana-managed rules | Yes | | `alertingImportYAMLUI` | Enables a UI feature for importing rules from a Prometheus file to Grafana-managed rules | Yes |
| `unifiedNavbars` | Enables unified navbars | | | `unifiedNavbars` | Enables unified navbars | |
| `tabularNumbers` | Use fixed-width numbers globally in the UI | Yes | | `tabularNumbers` | Use fixed-width numbers globally in the UI | |
## Public preview feature toggles ## Public preview feature toggles

@ -999,7 +999,7 @@ export interface FeatureToggles {
preferLibraryPanelTitle?: boolean; preferLibraryPanelTitle?: boolean;
/** /**
* Use fixed-width numbers globally in the UI * Use fixed-width numbers globally in the UI
* @default true * @default false
*/ */
tabularNumbers?: boolean; tabularNumbers?: boolean;
/** /**

@ -1714,7 +1714,7 @@ var (
Description: "Use fixed-width numbers globally in the UI", Description: "Use fixed-width numbers globally in the UI",
Stage: FeatureStageGeneralAvailability, Stage: FeatureStageGeneralAvailability,
Owner: grafanaFrontendPlatformSquad, Owner: grafanaFrontendPlatformSquad,
Expression: "true", Expression: "false",
}, },
{ {
Name: "newInfluxDSConfigPageDesign", Name: "newInfluxDSConfigPageDesign",

@ -2943,17 +2943,17 @@
{ {
"metadata": { "metadata": {
"name": "tabularNumbers", "name": "tabularNumbers",
"resourceVersion": "1750754828442", "resourceVersion": "1752078306230",
"creationTimestamp": "2025-06-24T11:52:03Z", "creationTimestamp": "2025-06-24T11:52:03Z",
"annotations": { "annotations": {
"grafana.app/updatedTimestamp": "2025-06-24 08:47:08.442537461 +0000 UTC" "grafana.app/updatedTimestamp": "2025-07-09 16:25:06.230922635 +0000 UTC"
} }
}, },
"spec": { "spec": {
"description": "Use fixed-width numbers globally in the UI", "description": "Use fixed-width numbers globally in the UI",
"stage": "GA", "stage": "GA",
"codeowner": "@grafana/grafana-frontend-platform", "codeowner": "@grafana/grafana-frontend-platform",
"expression": "true" "expression": "false"
} }
}, },
{ {

Loading…
Cancel
Save