mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Grafana UI: W/m2 should still support SI prefixes (#98362)
fix: W/m2 should still support SI prefixes Co-authored-by: oscarkilhed <oscar.kilhed@grafana.com>
This commit is contained in:
parent
7c04247d6f
commit
032f465ac6
@ -225,7 +225,7 @@ export const getCategories = (): ValueFormatCategory[] => [
|
||||
{ name: 'Megawatt (MW)', id: 'megwatt', fn: SIPrefix('W', 2) },
|
||||
{ name: 'Gigawatt (GW)', id: 'gwatt', fn: SIPrefix('W', 3) },
|
||||
{ name: 'Milliwatt (mW)', id: 'mwatt', fn: SIPrefix('W', -1) },
|
||||
{ name: 'Watt per square meter (W/m²)', id: 'Wm2', fn: toFixedUnit('W/m²') },
|
||||
{ name: 'Watt per square meter (W/m²)', id: 'Wm2', fn: SIPrefix('W/m²') },
|
||||
{ name: 'Volt-Ampere (VA)', id: 'voltamp', fn: SIPrefix('VA') },
|
||||
{ name: 'Kilovolt-Ampere (kVA)', id: 'kvoltamp', fn: SIPrefix('VA', 1) },
|
||||
{ name: 'Volt-Ampere reactive (VAr)', id: 'voltampreact', fn: SIPrefix('VAr') },
|
||||
|
Loading…
Reference in New Issue
Block a user