1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Fix overflowing content issue in states view (#28009)

This commit is contained in:
Aidan Timson
2025-11-20 12:32:32 +00:00
committed by GitHub
parent 60229ceba0
commit c6091971b6

View File

@@ -61,7 +61,7 @@ class HaPanelDevStateRenderer extends LitElement {
protected render() {
const showAttributes = !this.narrow && this.showAttributes;
return html`
<div
<div
class=${classMap({ entities: true, "hide-attributes": !showAttributes })}
role="table"
>
@@ -245,6 +245,7 @@ class HaPanelDevStateRenderer extends LitElement {
:host([virtualize]) {
display: block;
height: 100%;
overflow: auto;
}
.entities {