mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 01:28:53 +01:00
Fix nextmatch entry filter header could not be cleared
This commit is contained in:
parent
3f18031cfd
commit
a23cfd37b0
@ -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