Skip to content

Commit

Permalink
Add warning that live dashboard is deprecated (#3359)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelfrueh authored Nov 29, 2024
1 parent 25ab4b6 commit 2ea23c0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@
</button>
</div>

<div fxLayout="column">
<div class="warning" fxLayout="row" fxLayoutAlign="start center">
<i class="material-icons warning-icon">warning</i>
<span
>Warning: The Live Dashboard will be removed in future
versions. The live refresh feature has been integrated into
the Data Explorer. Please migrate your current dashboards to
the Data Explorer!</span
>
</div>
</div>
<div fxFlex="100" fxLayout="column">
<sp-basic-header-title-component
title="Dashboards"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,18 @@
display: inline;
margin-right: 10px;
}

.warning {
border: 1px solid #dea843;
background: #ececc9;
padding: 10px;
display: flex;
align-items: center;
gap: 8px;
box-sizing: border-box;
}

.warning-icon {
color: #dea843;
font-size: 24px;
}

0 comments on commit 2ea23c0

Please sign in to comment.