X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fapp%2Fwim-accounts%2Fnew-wim-account%2FNewWIMAccountComponent.ts;h=5b8e29aae7e8ea82bbeb6e3cba5760963352b3a9;hb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7;hp=7587b584a495124a828808de7535e4abae42ab1c;hpb=3b4814aa2d3dec621dadb52f058ba95a3dc3a86a;p=osm%2FNG-UI.git diff --git a/src/app/wim-accounts/new-wim-account/NewWIMAccountComponent.ts b/src/app/wim-accounts/new-wim-account/NewWIMAccountComponent.ts index 7587b58..5b8e29a 100644 --- a/src/app/wim-accounts/new-wim-account/NewWIMAccountComponent.ts +++ b/src/app/wim-accounts/new-wim-account/NewWIMAccountComponent.ts @@ -71,6 +71,9 @@ export class NewWIMAccountComponent implements OnInit { /** Element ref for fileInputConfig @public */ @ViewChild('fileInputConfigLabel', { static: true }) public fileInputConfigLabel: ElementRef; + /** Contains all methods related to shared @private */ + public sharedService: SharedService; + /** Instance of the rest service @private */ private restService: RestService; @@ -86,8 +89,8 @@ export class NewWIMAccountComponent 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.wimNewAccountForm.controls; } constructor(injector: Injector) { this.injector = injector; @@ -110,9 +113,6 @@ export class NewWIMAccountComponent implements OnInit { }); } - /** convenience getter for easy access to form fields */ - get f(): FormGroup['controls'] { return this.wimNewAccountForm.controls; } - /** * Lifecyle Hooks the trigger before component is instantiate */