mirror of
https://github.com/urbit/shrub.git
synced 2024-12-12 18:48:14 +03:00
Merge branch 'weather-precip-percent' (#1765)
* weather-precip-percent: weather: fix precipitation display Signed-off-by: Jared Tobin <jared@tlon.io>
This commit is contained in:
commit
cd3d24117c
@ -178,7 +178,7 @@ export default class WeatherTile extends Component {
|
||||
text={c.windBearing + '°'} />
|
||||
<IconWithData
|
||||
icon='chancerain'
|
||||
text={c.precipProbability + '%'} />
|
||||
text={(c.precipProbability * 100) + '%'} />
|
||||
<IconWithData
|
||||
icon='windspeed'
|
||||
text={Math.round(c.windSpeed) + ' mph'} />
|
||||
|
Loading…
Reference in New Issue
Block a user