mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
Remove rtl update check
This commit is contained in:
parent
07e68496c0
commit
f7ae5b91bf
@ -37,9 +37,8 @@ class HaLogbook extends LitElement {
|
||||
const oldHass = changedProps.get("hass") as HomeAssistant | undefined;
|
||||
const languageChanged =
|
||||
oldHass === undefined || oldHass.language !== this.hass.language;
|
||||
const rtlChanged =
|
||||
oldHass === undefined || computeRTL(oldHass) !== computeRTL(this.hass);
|
||||
return changedProps.has("entries") || languageChanged || rtlChanged;
|
||||
|
||||
return changedProps.has("entries") || languageChanged;
|
||||
}
|
||||
|
||||
protected updated(_changedProps: PropertyValues) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user