Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
export class EdiAttrSetEditDialogComponent
extends DialogComponent implements OnInit {
- @Input() mode: string = 'create';
+ @Input() mode = 'create';
@Input() attrSetId: number;
@Input() cloneSource: number;
attrSet: IdlObject;
});
}
this.pcrud.autoApply(updates).subscribe(
- res => this.close(true),
+ ret => this.close(true),
err => this.close(err),
() => this.close(true)
);
this.classLabel = this.idlClassDef.label;
this.includeOrgDescendants = true;
// TODO - this works, but doesn't clear the base component's subscription
- //this.grid.onRowActivate.subscribe(
- // (idlThing: IdlObject) => this.editSelected([idlThing])
- //);
+ // this.grid.onRowActivate.subscribe(
+ // (idlThing: IdlObject) => this.editSelected([idlThing])
+ // );
}
countProviders(row: IdlObject): Observable<IdlObject> {