Skip to content

Commit ac2ea21

Browse files
authored
Remove connection status icon in concentrator detail header card (#3343)
Fixes #3342
1 parent a61efc0 commit ac2ea21

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

src/IoTHub.Portal.Client/Pages/LoRaWAN/Concentrator/ConcentratorDetailPage.razor

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,6 @@
2525
<CardHeaderContent>
2626
<MudText Typo="Typo.h5" Class="overflow-ellipsis" Align="Align.Center">@(string.IsNullOrEmpty(concentrator.DeviceName) ? concentrator.DeviceId : concentrator.DeviceName)</MudText>
2727
</CardHeaderContent>
28-
<CardHeaderAvatar>
29-
@if (concentrator.IsConnected)
30-
{
31-
<MudTooltip Text="Concentrator is connected">
32-
<MudIcon Icon="@Icons.Material.Filled.Wifi" Color="Color.Success" />
33-
</MudTooltip>
34-
}
35-
else
36-
{
37-
<MudTooltip Text="Concentrator is not connected">
38-
<MudIcon Icon="@Icons.Material.Filled.WifiOff" Color="Color.Error" />
39-
</MudTooltip>
40-
}
41-
</CardHeaderAvatar>
4228
</MudCardHeader>
4329
</MudCard>
4430
@if (canWrite)

0 commit comments

Comments
 (0)