mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +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)
|
||||
{
|
||||
this.classList.remove("hideApp")
|
||||
this._searchNode.value = "";
|
||||
this._searchNode.focus();
|
||||
|
||||
this.dispatchEvent(new Event("change"));
|
||||
@ -387,7 +388,7 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(SlotMixin(LitE
|
||||
}
|
||||
else
|
||||
{
|
||||
this.app = value.app;
|
||||
this.app = this._searchNode.app = value.app;
|
||||
this._searchNode.value = value.id;
|
||||
}
|
||||
this.classList.toggle("hideApp", Boolean(value.id));
|
||||
|
Loading…
Reference in New Issue
Block a user