20250531.2 (#25752)

This commit is contained in:
Paul Bottein 2025-06-11 16:27:54 +02:00 committed by GitHub
commit 380f760f79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "home-assistant-frontend" name = "home-assistant-frontend"
version = "20250531.1" version = "20250531.2"
license = "Apache-2.0" license = "Apache-2.0"
license-files = ["LICENSE*"] license-files = ["LICENSE*"]
description = "The Home Assistant frontend" description = "The Home Assistant frontend"

View File

@ -85,7 +85,7 @@ export class HuiBadgeEditMode extends LitElement {
if (this._touchStarted) return; if (this._touchStarted) return;
this._hover = true; this._hover = true;
}); });
this.addEventListener("mouseout", () => { this.addEventListener("mouseleave", () => {
this._hover = false; this._hover = false;
}); });
this.addEventListener("click", () => { this.addEventListener("click", () => {

View File

@ -71,7 +71,7 @@ export class HuiCardEditMode extends LitElement {
if (this._touchStarted) return; if (this._touchStarted) return;
this._hover = true; this._hover = true;
}); });
this.addEventListener("mouseout", () => { this.addEventListener("mouseleave", () => {
this._hover = false; this._hover = false;
}); });
this.addEventListener("click", () => { this.addEventListener("click", () => {