I have an input like
<mat-form-field>
<input id="filter_administrationTable_{{ componentName }}" matInput
(keyup)="administrationTableFilter($event.target.value)" placeholder="{{ filterLabel }}">
</mat-form-field>
This is used as a filter to a table. After updating my data table, I would like to clear value of filter and clear it in frontend as well. How do I do it in Angular?