From 8b92c2198c0959015055f66ade9dae13f0d29eb7 Mon Sep 17 00:00:00 2001 From: Anders Bjerner Date: Thu, 16 Feb 2023 18:45:44 +0100 Subject: [PATCH] Have these always been named incorrectly? --- src/Skybrud.Umbraco.GridData/Models/GridRow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Skybrud.Umbraco.GridData/Models/GridRow.cs b/src/Skybrud.Umbraco.GridData/Models/GridRow.cs index 2a0043f..a38a5bb 100644 --- a/src/Skybrud.Umbraco.GridData/Models/GridRow.cs +++ b/src/Skybrud.Umbraco.GridData/Models/GridRow.cs @@ -63,12 +63,12 @@ public class GridRow : GridElement { /// /// Gets the first area of the row. If the row doesn't contain any areas, this property will return null. /// - public GridArea? FirstRow => Areas.FirstOrDefault(); + public GridArea? FirstArea => Areas.FirstOrDefault(); /// /// Gets the last area of the row. If the row doesn't contain any areas, this property will return null. /// - public GridArea? LastRow => Areas.LastOrDefault(); + public GridArea? LastArea => Areas.LastOrDefault(); /// /// Gets whether at least one area or control within the row is valid.