Bugfix/add missing guard to symbol autocomplete component (#6255)

* Add missing guard
pull/6225/head^2
Thomas Kaul 4 weeks ago committed by GitHub
parent a1986e6daa
commit 155d533ee9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -121,7 +121,7 @@ export class GfSymbolAutocompleteComponent
this.control.valueChanges
.pipe(
filter((query) => {
if (query.length === 0) {
if (query?.length === 0) {
this.showDefaultOptions();
return false;

Loading…
Cancel
Save