X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fsdn-controller%2Fnew-sdn-controller%2FNewSDNControllerComponent.ts;h=457c63cc9921dd7319359fbe694d17b71cf60d99;hb=d477b85279831f43f77d10acfc1912da1fbe6007;hp=75fc854871bfa9b524c909e90d6fe1fa258b735d;hpb=208bef2cea31da5427861ac81817790e98851fe2;p=osm%2FNG-UI.git diff --git a/src/app/sdn-controller/new-sdn-controller/NewSDNControllerComponent.ts b/src/app/sdn-controller/new-sdn-controller/NewSDNControllerComponent.ts index 75fc854..457c63c 100644 --- a/src/app/sdn-controller/new-sdn-controller/NewSDNControllerComponent.ts +++ b/src/app/sdn-controller/new-sdn-controller/NewSDNControllerComponent.ts @@ -63,6 +63,9 @@ export class NewSDNControllerComponent implements OnInit { /** Give the message for the loading @public */ public message: string = 'PLEASEWAIT'; + /** Contains all methods related to shared @private */ + public sharedService: SharedService; + /** Instance of the rest service @private */ private restService: RestService; @@ -78,8 +81,8 @@ export class NewSDNControllerComponent implements OnInit { /** Contains tranlsate instance @private */ private translateService: TranslateService; - /** Contains all methods related to shared @private */ - private sharedService: SharedService; + /** convenience getter for easy access to form fields */ + get f(): FormGroup['controls'] { return this.sdnControllerForm.controls; } constructor(injector: Injector) { this.injector = injector; @@ -103,9 +106,6 @@ export class NewSDNControllerComponent implements OnInit { }); } - /** convenience getter for easy access to form fields */ - get f(): FormGroup['controls'] { return this.sdnControllerForm.controls; } - /** * Lifecyle Hooks the trigger before component is instantiate */