こんにちは、primeng を使用して製品の crud テーブルを実装していますが、エラーが見つかりました:オブジェクトはイベントを参照している可能性があります。このエラーを解決するにはどうすればよいですか?
<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
ありがとうございました