Объект, возможно, «null». Ввод текста(глобальный фильтр) Пример

#primeng #angular12

Вопрос:

Привет, я внедряю таблицу продуктов crud с помощью primeng, но я обнаружил ошибку:объект, возможно, «null» относится к событию, как я могу устранить эту ошибку?

 <p-table #dt [value]="products" [rows]="10" [paginator]="true" [globalFilterFields]="['product.nome']"
        [(selection)]="selectedProducts" [rowHover]="true" dataKey="id"
        currentPageReportTemplate="Showing {first} to {last} of {totalRecords} entries" [showCurrentPageReport]="true">
        <ng-template pTemplate="caption">
            <div class="p-d-flex p-ai-center p-jc-between">
                <h5 class="p-m-0">Manage Products</h5>
                <span class="p-input-icon-left">
                    <i class="pi pi-search"></i>
                    <input pInputText type="text" (input)="dt.filterGlobal($event.target.value, 'contains')" placeholder="Search..." /> <!--error here-->
                </span>
            </div>
        </ng-template>
 

здесь ошибка

  src/app/components/product/product.component.html:26:90 - error TS2531: Object is possibly 'null'.

26                     <input pInputText type="text" (input)="dt.filterGlobal($event.target.value, 'contains')" placeholder="Search..." />//value is null
                                                                                            
 

Спасибо