mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 03:36:44 +00:00
Merge branch 'dev'
This commit is contained in:
commit
10eadbcbbb
@ -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"
|
||||||
|
@ -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`
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user