We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa61fc commit cace2e2Copy full SHA for cace2e2
2 files changed
.storybook/seed-fake.js
@@ -374,15 +374,19 @@ export const seedFake = (db) => {
374
automatic_cooling_enabled: true,
375
automatic_heating_enabled: true,
376
cooling_set_point_fahrenheit: 75,
377
+ cooling_set_point_celsius: 23.8,
378
heating_set_point_fahrenheit: 65,
379
+ heating_set_point_celsius: 18.3,
380
},
381
default_climate_setting: {
382
hvac_mode_setting: 'heat_cool',
383
manual_override_allowed: false,
384
385
386
387
388
389
390
391
available_hvac_mode_settings: ['off', 'cool', 'heat', 'heat_cool'],
392
can_enable_automatic_cooling: true,
src/lib/seam/components/DeviceDetails/ThermostatDeviceDetails.tsx
@@ -133,6 +133,7 @@ export function ThermostatDeviceDetails({
133
<ClimateSettingStatus
134
climateSetting={device.properties.default_climate_setting}
135
temperatureUnit='fahrenheit'
136
+ iconPlacement='right'
137
/>
138
) : (
139
<p>{t.none}</p>
@@ -397,6 +398,7 @@ function ClimateSettingRow({
397
398
399
climateSetting={device.properties.current_climate_setting}
400
401
402
403
}
404
>
0 commit comments