Fix edit card not working in chrome after editing (#25751)
parent
d542b52ebd
commit
6d30d15638
|
@ -85,7 +85,7 @@ export class HuiBadgeEditMode extends LitElement {
|
|||
if (this._touchStarted) return;
|
||||
this._hover = true;
|
||||
});
|
||||
this.addEventListener("mouseout", () => {
|
||||
this.addEventListener("mouseleave", () => {
|
||||
this._hover = false;
|
||||
});
|
||||
this.addEventListener("click", () => {
|
||||
|
|
|
@ -71,7 +71,7 @@ export class HuiCardEditMode extends LitElement {
|
|||
if (this._touchStarted) return;
|
||||
this._hover = true;
|
||||
});
|
||||
this.addEventListener("mouseout", () => {
|
||||
this.addEventListener("mouseleave", () => {
|
||||
this._hover = false;
|
||||
});
|
||||
this.addEventListener("click", () => {
|
||||
|
|
Loading…
Reference in New Issue