fixed message not displaying issue

This commit is contained in:
Shubham Takode 2024-03-07 12:57:17 +05:30
parent 579b6a34ab
commit 8be2ab24b1
2 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,7 @@
(nodesChangedInReactFlow)="nodesChangedInReactFlow($event)"
(nodeClicked)="nodeSelected($event)"
(edgesChangedInReactFlow)="edgesChangedInReactFlow($event)" />
<div class="pipeline-empty">
<div *ngIf="!selectedPipeline?.flow_display?.nodes?.length" class="pipeline-empty">
<i class="icon i-fingers-white mx-auto xxl"></i>
<br />
<div class="sub-title">

View File

@ -33,6 +33,10 @@
}
.pipeline-empty {
position: absolute;
top: 0;
width: 100%;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;