Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten committed Apr 4, 2024
2 parents e96aca9 + 1714182 commit 10eadbc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "home-assistant-frontend"
version = "20240404.0"
version = "20240404.1"
license = {text = "Apache-2.0"}
description = "The Home Assistant frontend"
readme = "README.md"
Expand Down
5 changes: 5 additions & 0 deletions src/components/ha-sub-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ import { MdSubMenu } from "@material/web/menu/sub-menu";
@customElement("ha-sub-menu")
// @ts-expect-error
export class HaSubMenu extends MdSubMenu {
async show() {
super.show();
this.menu.hasOverflow = false;
}

static override styles: CSSResult[] = [
MdSubMenu.styles,
css`
Expand Down
1 change: 1 addition & 0 deletions src/panels/config/automation/ha-automation-picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1185,6 +1185,7 @@ class HaAutomationPicker extends SubscribeMixin(LitElement) {
css`
:host {
display: block;
height: 100%;
}
hass-tabs-subpage-data-table {
--data-table-row-height: 60px;
Expand Down
1 change: 1 addition & 0 deletions src/panels/config/scene/ha-scene-dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,7 @@ class HaSceneDashboard extends SubscribeMixin(LitElement) {
css`
:host {
display: block;
height: 100%;
}
hass-tabs-subpage-data-table {
--data-table-row-height: 60px;
Expand Down
1 change: 1 addition & 0 deletions src/panels/config/script/ha-script-picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1066,6 +1066,7 @@ class HaScriptPicker extends SubscribeMixin(LitElement) {
css`
:host {
display: block;
height: 100%;
}
hass-tabs-subpage-data-table {
--data-table-row-height: 60px;
Expand Down

0 comments on commit 10eadbc

Please sign in to comment.