Merge pull request #613 from bemurphy/bem-fix_component_example
Fix conversion in component stateless example
This commit is contained in:
commit
26a6664cd0
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ var TemperatureConverter = {
|
||||||
return value - 273.15
|
return value - 273.15
|
||||||
},
|
},
|
||||||
kelvinToFahrenheit: function(value) {
|
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