add searchString
This commit is contained in:
parent
999335af87
commit
d82a53548b
|
@ -27,6 +27,7 @@ export class UsuarioPlantillasComponent implements OnInit {
|
|||
isLoading = false;
|
||||
usuarioExtra: UsuarioExtra | null = null;
|
||||
account: Account | null = null;
|
||||
searchString: string;
|
||||
|
||||
constructor(
|
||||
protected plantillaService: PlantillaService,
|
||||
|
@ -38,7 +39,9 @@ export class UsuarioPlantillasComponent implements OnInit {
|
|||
protected accountService: AccountService,
|
||||
protected encuestaService: EncuestaService,
|
||||
protected router: Router
|
||||
) {}
|
||||
) {
|
||||
this.searchString = '';
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.accountService.getAuthenticationState().subscribe(account => {
|
||||
|
|
Loading…
Reference in New Issue