This is an automated email from the ASF dual-hosted git repository. ytykhun pushed a commit to branch revert-1155-DATALAB-2383 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 151765908bacfca9ef5a78700beaa82df1e7df99 Author: Yurii Tykhun <[email protected]> AuthorDate: Tue May 11 12:42:28 2021 +0300 Revert "[DATALAB-2383] removed Close button for Library installation error" --- .../exploratory/install-libraries/install-libraries.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts index 4f7c84d..1f64d04 100644 --- a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts +++ b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/install-libraries/install-libraries.component.ts @@ -552,9 +552,12 @@ export class InstallLibrariesComponent implements OnInit, OnDestroy { <div class="content lib-error scrolling" > {{ data }} </div> + <div class="text-center"> + <button type="button" class="butt" mat-raised-button (click)="dialogRef.close()">Close</button> + </div> `, styles: [ ` - .lib-error { max-height: 200px; overflow-x: auto; word-break: break-all; padding: 20px 30px !important; margin: 20px 0 !important;} + .lib-error { max-height: 200px; overflow-x: auto; word-break: break-all; padding: 20px 30px !important; margin: 20px 0;} ` ] }) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
