Compare commits

..

1 Commits

Author SHA1 Message Date
Paul Bottein
d0188404a7 Don't use tooltip on dashboard toolbar 2025-11-03 09:33:03 +01:00
3 changed files with 3 additions and 6 deletions

2
.nvmrc
View File

@@ -1 +1 @@
24.11.0
22.21.1

View File

@@ -237,6 +237,6 @@
},
"packageManager": "yarn@4.10.3",
"volta": {
"node": "24.11.0"
"node": "22.21.1"
}
}

View File

@@ -322,7 +322,6 @@ class HUIRoot extends LitElement {
.path=${item.icon}
slot="trigger"
.label=${label}
hide-title
></ha-icon-button>
${item.subItems
.filter((subItem) => subItem.visible)
@@ -349,10 +348,8 @@ class HUIRoot extends LitElement {
.id="button-${index}"
.path=${item.icon}
@click=${item.buttonAction}
.label=${label}
></ha-icon-button>
<ha-tooltip placement="bottom" .for="button-${index}">
${label}
</ha-tooltip>
`;
result.push(button);
});