Skip to content

Commit

Permalink
Have these always been named incorrectly?
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Feb 16, 2023
1 parent 55de767 commit 8b92c21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Skybrud.Umbraco.GridData/Models/GridRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ public class GridRow : GridElement {
/// <summary>
/// Gets the first area of the row. If the row doesn't contain any areas, this property will return <c>null</c>.
/// </summary>
public GridArea? FirstRow => Areas.FirstOrDefault();
public GridArea? FirstArea => Areas.FirstOrDefault();

/// <summary>
/// Gets the last area of the row. If the row doesn't contain any areas, this property will return <c>null</c>.
/// </summary>
public GridArea? LastRow => Areas.LastOrDefault();
public GridArea? LastArea => Areas.LastOrDefault();

/// <summary>
/// Gets whether at least one area or control within the row is valid.
Expand Down

0 comments on commit 8b92c21

Please sign in to comment.