Fix name and seconds being linked together in Visual Editor

This commit is contained in:
2020-11-22 16:37:48 +02:00
parent e8d87e9afb
commit f4128145fb
+4 -2
View File
@@ -188,12 +188,14 @@ export class TimePickerCardEditor extends LitElement implements LovelaceCardEdit
}
private onHideNameChange({ target: { checked } }): void {
const newConfig = { ...this.config, hide: { name: !checked } };
const hide = { ...this.config.hide, name: !checked };
const newConfig = { ...this.config, hide };
this.dispatch(newConfig);
}
private onHideSecondsChange({ target: { checked } }): void {
const newConfig = { ...this.config, hide: { seconds: !checked } };
const hide = { ...this.config.hide, seconds: !checked };
const newConfig = { ...this.config, hide };
this.dispatch(newConfig);
}