mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-13 17:38:19 +01:00
Fix nextmatch entry filter header could not be cleared
This commit is contained in:
parent
62f338dbdf
commit
c5e7f7d7e7
@ -300,6 +300,7 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(SlotMixin(LitE
|
|||||||
protected _handleEntryClear(event)
|
protected _handleEntryClear(event)
|
||||||
{
|
{
|
||||||
this.classList.remove("hideApp")
|
this.classList.remove("hideApp")
|
||||||
|
this._searchNode.value = "";
|
||||||
this._searchNode.focus();
|
this._searchNode.focus();
|
||||||
|
|
||||||
this.dispatchEvent(new Event("change"));
|
this.dispatchEvent(new Event("change"));
|
||||||
@ -387,7 +388,7 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(SlotMixin(LitE
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.app = value.app;
|
this.app = this._searchNode.app = value.app;
|
||||||
this._searchNode.value = value.id;
|
this._searchNode.value = value.id;
|
||||||
}
|
}
|
||||||
this.classList.toggle("hideApp", Boolean(value.id));
|
this.classList.toggle("hideApp", Boolean(value.id));
|
||||||
|
Loading…
Reference in New Issue
Block a user