Skip to content

Commit c609197

Browse files
authored
Fix overflowing content issue in states view (#28009)
1 parent 60229ce commit c609197

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/panels/developer-tools/state/developer-tools-state-renderer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class HaPanelDevStateRenderer extends LitElement {
6161
protected render() {
6262
const showAttributes = !this.narrow && this.showAttributes;
6363
return html`
64-
<div
64+
<div
6565
class=${classMap({ entities: true, "hide-attributes": !showAttributes })}
6666
role="table"
6767
>
@@ -245,6 +245,7 @@ class HaPanelDevStateRenderer extends LitElement {
245245
:host([virtualize]) {
246246
display: block;
247247
height: 100%;
248+
overflow: auto;
248249
}
249250
250251
.entities {

0 commit comments

Comments
 (0)