trim instance name, fix #225

This commit is contained in:
Nicolas Constant 2020-02-24 20:21:07 -05:00
parent 153dc60f4f
commit 6ab3fc1bd8
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export class AddNewAccountComponent implements OnInit {
private instance: string;
@Input()
set setInstance(value: string) {
this.instance = value;
this.instance = value.trim();
this.checkComrad();
}
get setInstance(): string {