Skip to content

Commit

Permalink
Fix rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Metal-Mighty committed Aug 23, 2024
1 parent fab7813 commit e38593e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,6 @@

public string defaultDeviceModel { get; set; } = "Choose a Device Model";

public string defaultDeviceModel { get; set; } = "Choose a Device Model";

public IEnumerable<IDeviceModel> DeviceModels = new List<IDeviceModel>();
Dictionary<string, List<DeviceModelCommandDto>> CommandDictionary = new Dictionary<string, List<DeviceModelCommandDto>>();

Expand Down
11 changes: 4 additions & 7 deletions src/IoTHub.Portal.Client/Pages/Layer/LayerListPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
@inject IDialogService DialogService
@inject ISnackbar Snackbar

@inject ILayerClientService LayerClientService
@inject IDialogService DialogService
@inject ISnackbar Snackbar

<MudGrid>
<MudItem xs="12">
<MudExpansionPanel Text="Layer" IsInitiallyExpanded="true">
Expand Down Expand Up @@ -56,10 +52,11 @@
[CascadingParameter]
public Error Error { get; set; } = default!;

public HashSet<LayerHash> Layers { get; set; } = new HashSet<LayerHash> { };
public HashSet<LayerHash> Layers { get; set; } = new();

private IEnumerable<DeviceListItem> Devices { get; set; } = new List<DeviceListItem>();

public bool IsLoading { get; set; } = true;
public readonly int[] pageSizeOptions = { 10, 5, 3 };
public string? printDetails { get; set; }

protected override async Task OnInitializedAsync()
{
Expand Down

0 comments on commit e38593e

Please sign in to comment.