Skip to content

Commit

Permalink
moved location of DAG message so that it does not shrink the DAG view…
Browse files Browse the repository at this point in the history
… in fullscreen (#454)
  • Loading branch information
agduncan94 authored Sep 11, 2018
1 parent f02491a commit c707d59
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/workflow/dag/dag.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div class="row" id="dag-holder" [ngClass]="{'fullscreen': expanded}">
<div class="col-md-12">
<span class="alert alert-warning col-md-12" role="alert" *ngIf="workflow?.descriptorType === 'nfl' && dagType === 'classic'">
<span class="glyphicon glyphicon-warning-sign"></span>&nbsp;DAG display is still experimental for Nextflow.
</span>
</div>
<div *ngIf="workflow?.descriptorType === 'nfl' && dagType === 'classic'">
<span class="alert alert-warning col-md-12" role="alert">
<span class="glyphicon glyphicon-warning-sign"></span>&nbsp;DAG display is still experimental for Nextflow.
</span>
</div>

<div class="row" id="dag-holder" [ngClass]="{'fullscreen': expanded}">
<div class="col-md-12" id="dag-col" [ngClass]="{'fullscreen-element': expanded}">
<div [ngClass]="{'fullscreen-dropdown': expanded}">
<div *ngIf="enableCwlViewer && workflow?.descriptorType === 'cwl' && workflow?.source_control_provider === 'GITHUB'" style="line-height: 20px;">
Expand Down

0 comments on commit c707d59

Please sign in to comment.