1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Removed weather station from UI; not even sure what it means.

This commit is contained in:
Jon Ziebell 2020-02-08 14:09:58 -05:00
parent a6eb76b16d
commit c45a5595e9

View File

@ -170,7 +170,7 @@ beestat.component.modal.weather.prototype.decorate_contents_ = function(parent)
var container = $.createElement('div') var container = $.createElement('div')
.style({ .style({
'display': 'grid', 'display': 'grid',
'grid-template-columns': 'repeat(auto-fill, minmax(120px, 1fr))', 'grid-template-columns': 'repeat(auto-fill, minmax(150px, 1fr))',
'margin': '0 0 16px -16px' 'margin': '0 0 16px -16px'
}); });
parent.appendChild(container); parent.appendChild(container);
@ -216,10 +216,6 @@ beestat.component.modal.weather.prototype.decorate_contents_ = function(parent)
{ {
'name': 'Pressure', 'name': 'Pressure',
'value': thermostat.weather.barometric_pressure + 'mb' 'value': thermostat.weather.barometric_pressure + 'mb'
},
{
'name': 'Station',
'value': thermostat.weather.station
} }
]; ];