-
Chris Hines authoredChris Hines authored
warndialog.component.html 752 B
<div *ngIf="data.name !== undefined && data.name !== null">
<h2>{{ data.name }} Running</h2>
It looks like you already connected to {{ data.name }}<br>
</div>
<div *ngIf="data.name === undefined || data.name === null">
<h2>Application Running</h2>
It looks like you already connected to a Strudel2 Application<br>
</div>
Depending on which applications you are connecting to and which order you open the windows in, you may experience bugs<br>
For example if you open Jupyter Lab then a terminal Jupyter Lab will misbehave. If you open terminal the Jupyter Lab this will be OK.
<div fxLayout="row" fxLayoutAlign="space-between stretch" style="width: 100%">
<button mat-button (click)="close(null)">OK, Got it!</button>
</div>