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

View File

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