Skip to content

Commit

Permalink
fix(HUDS): elimina reemplazo de privacy en elemento rup
Browse files Browse the repository at this point in the history
  • Loading branch information
ma7payne committed Jul 25, 2024
1 parent 802e18b commit a2c4b45
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/app/modules/rup/components/core/rup.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,6 @@ export class RUPComponent implements OnInit, AfterViewInit, OnDestroy {
* @memberof RUPComponent
*/
private loadComponent() {
if (this.registro) {
setTimeout(() => {
if (this.registro && !this.registro.privacy && this.params?.privacy) {
this.registro.privacy = { scope: this.params.privacy };
} else {
this.registro.privacy = { scope: 'public' };
}
}, 0);
}

// Cargamos el componente
const component = ElementosRUPRegister.get(this.elementoRUP.componente).component;
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(component as any);
Expand Down

0 comments on commit a2c4b45

Please sign in to comment.