This is an automated email from the ASF dual-hosted git repository. ankovalyshyn pushed a commit to branch feature/projects in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit 65604f4a2a88726b2cb9c72c101508b5cb0e44a3 Author: Andriana Kovalyshyn <[email protected]> AuthorDate: Tue May 28 17:47:09 2019 +0300 [DLAB-631]: fixed endpoint selection --- .../administration/project/project-form/project-form.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/project/project-form/project-form.component.html b/services/self-service/src/main/resources/webapp/src/app/administration/project/project-form/project-form.component.html index 599e152..388c340 100644 --- a/services/self-service/src/main/resources/webapp/src/app/administration/project/project-form/project-form.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/administration/project/project-form/project-form.component.html @@ -50,8 +50,8 @@ <i class="material-icons">clear</i> None </a> </mat-option> - <mat-option *ngFor="let group of endpointsList" [value]="group"> - {{ group }} + <mat-option *ngFor="let endpoint of endpointsList" [value]="endpoint.name"> + {{ endpoint.name }} </mat-option> <mat-option *ngIf="!endpointsList.length" class="multiple-select empty" disabled>Endpoints list is empty</mat-option> </mat-select> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
