mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-24 23:59:39 +01:00
Fix disappearing tags when user clicks on search after selecting a result
This commit is contained in:
parent
3acbd7b462
commit
2430f65304
@ -471,6 +471,7 @@ export const Et2WithSearchMixin = dedupeMixin(<T extends Constructor<LitElement>
|
|||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
placeholder="${this.egw().lang("search")}"
|
placeholder="${this.egw().lang("search")}"
|
||||||
style="flex: 1 1 auto;"
|
style="flex: 1 1 auto;"
|
||||||
|
@mousedown=${this._handleSearchMouseDown}
|
||||||
@keydown=${this._handleSearchKeyDown}
|
@keydown=${this._handleSearchKeyDown}
|
||||||
@blur=${this._handleSearchBlur}
|
@blur=${this._handleSearchBlur}
|
||||||
@sl-clear=${this._handleSearchClear}
|
@sl-clear=${this._handleSearchClear}
|
||||||
@ -929,6 +930,7 @@ export const Et2WithSearchMixin = dedupeMixin(<T extends Constructor<LitElement>
|
|||||||
*/
|
*/
|
||||||
async _handleSearchBlur(event : FocusEvent)
|
async _handleSearchBlur(event : FocusEvent)
|
||||||
{
|
{
|
||||||
|
event.stopPropagation();
|
||||||
clearTimeout(this._searchTimeout);
|
clearTimeout(this._searchTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user