Commit 04080125 by Martina Catizone Committed by Ryan McKinley

Chore: correct typo in word Fahrenheit (#20040)

fixes: #20039
parent 551e24f9
...@@ -884,8 +884,8 @@ ...@@ -884,8 +884,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
...@@ -1991,8 +1991,8 @@ ...@@ -1991,8 +1991,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
...@@ -3078,8 +3078,8 @@ ...@@ -3078,8 +3078,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
......
...@@ -876,8 +876,8 @@ ...@@ -876,8 +876,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
...@@ -1975,8 +1975,8 @@ ...@@ -1975,8 +1975,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
...@@ -3054,8 +3054,8 @@ ...@@ -3054,8 +3054,8 @@
"value": "celsius" "value": "celsius"
}, },
{ {
"text": "Farenheit (°F)", "text": "Fahrenheit (°F)",
"value": "farenheit" "value": "fahrenheit"
}, },
{ {
"text": "Kelvin (K)", "text": "Kelvin (K)",
......
...@@ -283,7 +283,7 @@ export const getCategories = (): ValueFormatCategory[] => [ ...@@ -283,7 +283,7 @@ export const getCategories = (): ValueFormatCategory[] => [
name: 'Temperature', name: 'Temperature',
formats: [ formats: [
{ name: 'Celsius (°C)', id: 'celsius', fn: toFixedUnit('°C') }, { name: 'Celsius (°C)', id: 'celsius', fn: toFixedUnit('°C') },
{ name: 'Farenheit (°F)', id: 'farenheit', fn: toFixedUnit('°F') }, { name: 'Fahrenheit (°F)', id: 'fahrenheit', fn: toFixedUnit('°F') },
{ name: 'Kelvin (K)', id: 'kelvin', fn: toFixedUnit('K') }, { name: 'Kelvin (K)', id: 'kelvin', fn: toFixedUnit('K') },
], ],
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment