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 8e1d52b27cd6dccb3103171fac3707169c7ef5dc Author: Andriana Kovalyshyn <[email protected]> AuthorDate: Wed Jun 26 15:35:38 2019 +0300 [DLAB-821]: removed extra scrollbar on creating project dialog --- .../webapp/src/app/administration/project/project.component.ts | 2 +- .../computational-resource-create-dialog.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/project/project.component.ts b/services/self-service/src/main/resources/webapp/src/app/administration/project/project.component.ts index c41ab27..dc888cf 100644 --- a/services/self-service/src/main/resources/webapp/src/app/administration/project/project.component.ts +++ b/services/self-service/src/main/resources/webapp/src/app/administration/project/project.component.ts @@ -115,7 +115,7 @@ export class ProjectComponent implements OnInit, OnDestroy { `, styles: [` .content { color: #718ba6; padding: 0; font-size: 14px; font-weight: 400; margin: 0; overflow: hidden; } - .edit-form { height: 380px; } + .edit-form { height: 380px; overflow: hidden; } `] }) export class EditProjectComponent { diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/computational/computational-resource-create-dialog/computational-resource-create-dialog.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/computational/computational-resource-create-dialog/computational-resource-create-dialog.component.html index 627b7de..79822d8 100644 --- a/services/self-service/src/main/resources/webapp/src/app/resources/computational/computational-resource-create-dialog/computational-resource-create-dialog.component.html +++ b/services/self-service/src/main/resources/webapp/src/app/resources/computational/computational-resource-create-dialog/computational-resource-create-dialog.component.html @@ -170,7 +170,7 @@ <label class="spot-label label"> <input #spotInstancesCheck type="checkbox" (change)="selectSpotInstances($event)" /> <span>Spot instance</span> - <span *ngIf="spotInstancesSelect?.nativeElement['checked'] || false"> bit, %</span> + <span *ngIf="spotInstancesSelect?.nativeElement['checked'] || false"> bid, %</span> </label> <div class="control spot-details" [ngClass]="{ show: spotInstancesSelect?.nativeElement['checked'] || false }" *ngIf="spotInstancesSelect?.nativeElement['checked'] || false"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
