an other fix for 4c00b812ee fixing error when trying to reply

This commit is contained in:
ralf 2022-09-13 10:17:59 +02:00
parent 7ac70ac8ee
commit d8d8429622

View File

@ -409,7 +409,7 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
protected get _activeControls()
{
return this.shadowRoot.querySelector(".search_input") ||
return this.shadowRoot?.querySelector(".search_input") ||
this.querySelector(".search_input");
}