Skip to content

Commit

Permalink
mdd-fix-browserlayout
Browse files Browse the repository at this point in the history
made ValueTask projects > public
  • Loading branch information
mddifilippo89 committed Oct 31, 2023
1 parent 6f070e4 commit c4eafc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected override async Task OnInitializedAsync()
await JSRuntime.InvokeVoidAsync("attachPreventScroll");
}

protected async ValueTask DisposeAsync()
public async ValueTask DisposeAsync()
{
await JSRuntime.InvokeVoidAsync("removePreventScroll");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Name="PropertyEditor"
@ref="propertyEditor"

Target="Treegrid"
Target="treeGrid"
DescriptionType="WebTreeGrid"
IsHorizontal="true"
IsWrappingEnabled="true">
Expand Down Expand Up @@ -146,13 +146,13 @@

public void WebGridPinFirstGroupToggle(IgbPropertyEditorPropertyDescriptionButtonClickEventArgs args)
{
var columnGroup = this.grid.ActualColumns[1];
var columnGroup = this.treeGrid.ActualColumns[1];
columnGroup.Pinned = !columnGroup.Pinned;
}

public void WebGridHideFirstGroupToggle(IgbPropertyEditorPropertyDescriptionButtonClickEventArgs args)
{
var columnGroup = this.grid.ActualColumns[1];
var columnGroup = this.treeGrid.ActualColumns[1];
columnGroup.Hidden = !columnGroup.Hidden;
}

Expand Down

0 comments on commit c4eafc2

Please sign in to comment.