TSK-620 Move master domain to dropdown last element

TSK-620 Move master domain to dropdown last element
This commit is contained in:
Martin Rojas Miguel Angel 2018-07-02 12:19:51 +02:00 committed by Mustapha Zorgati
parent 0422c576ac
commit b5c4d583e4
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export class DomainService {
private addEmptyDomain(domains: Array<string>): Array<string> {
this.domainValue = Object.assign([], domains);
this.domainValue.unshift('');
this.domainValue.push('');
return this.domainValue;
}