Fix conversion in component stateless example
This commit is contained in:
parent
0ec4ed451f
commit
7288afc18e
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ var TemperatureConverter = {
|
|||
return value - 273.15
|
||||
},
|
||||
kelvinToFahrenheit: function(value) {
|
||||
return (value 9 / 5 * (v - 273.15)) + 32
|
||||
return (9 / 5 * (value - 273.15)) + 32
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue