mirror of
https://github.com/home-assistant/frontend.git
synced 2025-08-02 14:07:55 +00:00
comment
This commit is contained in:
parent
b802cf9274
commit
d40acc227c
@ -131,7 +131,11 @@ export class MoreInfoHistory extends LitElement {
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
this._entries = [...(this._entries || []), ...newEntries];
|
if (this._entries) {
|
||||||
|
this._entries = [...this._entries, ...newEntries];
|
||||||
|
} else {
|
||||||
|
this._entries = newEntries;
|
||||||
|
}
|
||||||
|
|
||||||
this._lastLogbookDate = now;
|
this._lastLogbookDate = now;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user