diff --git a/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.html b/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.html index a4ce1c6..777a369 100644 --- a/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.html +++ b/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.html @@ -19,6 +19,35 @@
+
+
+
+
+ +
+
+
+ +
+ +
+
+ @@ -32,7 +61,13 @@ - +
  • diff --git a/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.ts b/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.ts index 3588bf3..d87b8cd 100644 --- a/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.ts +++ b/src/main/webapp/app/entities/usuario-extra/list/usuario-extra.component.ts @@ -17,8 +17,13 @@ export class UsuarioExtraComponent implements OnInit { usuarioExtras?: IUsuarioExtra[]; publicUsers?: IUser[]; isLoading = false; + public searchNombreUsuario: string; + public searchEstadoUsuario: string; - constructor(protected usuarioExtraService: UsuarioExtraService, protected modalService: NgbModal) {} + constructor(protected usuarioExtraService: UsuarioExtraService, protected modalService: NgbModal) { + this.searchNombreUsuario = ''; + this.searchEstadoUsuario = ''; + } loadPublicUser(): void { this.usuarioExtraService @@ -60,6 +65,8 @@ export class UsuarioExtraComponent implements OnInit { } ngOnInit(): void { + this.searchNombreUsuario = ''; + this.searchEstadoUsuario = ''; this.loadAll(); }