Merge branch 'dev'

This commit is contained in:
Bram Kragten 2024-04-04 21:31:51 +02:00
commit 10eadbcbbb
5 changed files with 9 additions and 1 deletions

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "home-assistant-frontend" name = "home-assistant-frontend"
version = "20240404.0" version = "20240404.1"
license = {text = "Apache-2.0"} license = {text = "Apache-2.0"}
description = "The Home Assistant frontend" description = "The Home Assistant frontend"
readme = "README.md" readme = "README.md"

View File

@ -6,6 +6,11 @@ import { MdSubMenu } from "@material/web/menu/sub-menu";
@customElement("ha-sub-menu") @customElement("ha-sub-menu")
// @ts-expect-error // @ts-expect-error
export class HaSubMenu extends MdSubMenu { export class HaSubMenu extends MdSubMenu {
async show() {
super.show();
this.menu.hasOverflow = false;
}
static override styles: CSSResult[] = [ static override styles: CSSResult[] = [
MdSubMenu.styles, MdSubMenu.styles,
css` css`

View File

@ -1185,6 +1185,7 @@ class HaAutomationPicker extends SubscribeMixin(LitElement) {
css` css`
:host { :host {
display: block; display: block;
height: 100%;
} }
hass-tabs-subpage-data-table { hass-tabs-subpage-data-table {
--data-table-row-height: 60px; --data-table-row-height: 60px;

View File

@ -950,6 +950,7 @@ class HaSceneDashboard extends SubscribeMixin(LitElement) {
css` css`
:host { :host {
display: block; display: block;
height: 100%;
} }
hass-tabs-subpage-data-table { hass-tabs-subpage-data-table {
--data-table-row-height: 60px; --data-table-row-height: 60px;

View File

@ -1066,6 +1066,7 @@ class HaScriptPicker extends SubscribeMixin(LitElement) {
css` css`
:host { :host {
display: block; display: block;
height: 100%;
} }
hass-tabs-subpage-data-table { hass-tabs-subpage-data-table {
--data-table-row-height: 60px; --data-table-row-height: 60px;