TSK-620 Move master domain to dropdown last element

TSK-620 Move master domain to dropdown last element
This commit is contained in:
Miguel Martin Rojas 2018-07-02 12:19:51 +02:00 committed by Mustapha Zorgati
parent 1ae97e1c21
commit 13a28509f1
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;
}