fix: more propery name typos

This commit is contained in:
Damien Ostler 2024-02-18 19:32:56 -05:00
parent c16eb14a7c
commit dffad30688
2 changed files with 11 additions and 11 deletions

View File

@ -20,7 +20,7 @@ public class SellerProfilePageSettingsModel
public string PortfolioBackgroundColor { get; set; } public string PortfolioBackgroundColor { get; set; }
public string PortfolioHeaderImageUrl { get; set; } public string PortfolioHeaderImageUrl { get; set; }
public bool PortfolioHeaderUseImage { get; set; } public bool PortfolioHeaderUseImage { get; set; }
public int PortfolionHeaderSize { get; set; } public int PortfolioHeaderSize { get; set; }
public string PortfolioHeaderColor { get; set; } public string PortfolioHeaderColor { get; set; }
public string PortfolioHeaderText { get; set; } public string PortfolioHeaderText { get; set; }
public int DescriptionTextSize { get; set; } public int DescriptionTextSize { get; set; }

View File

@ -21,11 +21,11 @@ public static class SellerProfilePageSettingsModelExtensions
DescriptionBackgroundColor = sellerProfile.DescriptionBackgroundColor, DescriptionBackgroundColor = sellerProfile.DescriptionBackgroundColor,
DescriptionTextColor = sellerProfile.DescriptionTextColor, DescriptionTextColor = sellerProfile.DescriptionTextColor,
DescriptionTextSize = sellerProfile.DescriptionTextSize, DescriptionTextSize = sellerProfile.DescriptionTextSize,
PortfolionHeaderText = sellerProfile.PortfolionHeaderText, PortfolioHeaderText = sellerProfile.PortfolionHeaderText,
PortfolionHeaderColor = sellerProfile.PortfolionHeaderColor, PortfolioHeaderColor = sellerProfile.PortfolionHeaderColor,
PortfolionHeaderSize = sellerProfile.PortfolionHeaderSize, PortfolioHeaderSize = sellerProfile.PortfolionHeaderSize,
PortfolionHeaderUseImage = sellerProfile.PortfolionHeaderUseImage, PortfolioHeaderUseImage = sellerProfile.PortfolionHeaderUseImage,
PortfolionHeaderImageUrl = sellerProfile.PortfolionHeaderImageUrl, PortfolioHeaderImageUrl = sellerProfile.PortfolionHeaderImageUrl,
PortfolioBackgroundColor = sellerProfile.PortfolioBackgroundColor, PortfolioBackgroundColor = sellerProfile.PortfolioBackgroundColor,
PortfolioMasonry = sellerProfile.PortfolioMasonry, PortfolioMasonry = sellerProfile.PortfolioMasonry,
PortfolioColumns = sellerProfile.PortfolioColumns, PortfolioColumns = sellerProfile.PortfolioColumns,
@ -58,11 +58,11 @@ public static class SellerProfilePageSettingsModelExtensions
existing.DescriptionBackgroundColor = sellerProfile.DescriptionBackgroundColor; existing.DescriptionBackgroundColor = sellerProfile.DescriptionBackgroundColor;
existing.DescriptionTextColor = sellerProfile.DescriptionTextColor; existing.DescriptionTextColor = sellerProfile.DescriptionTextColor;
existing.DescriptionTextSize = sellerProfile.DescriptionTextSize; existing.DescriptionTextSize = sellerProfile.DescriptionTextSize;
existing.PortfolionHeaderText = sellerProfile.PortfolionHeaderText; existing.PortfolionHeaderText = sellerProfile.PortfolioHeaderText;
existing.PortfolionHeaderColor = sellerProfile.PortfolionHeaderColor; existing.PortfolionHeaderColor = sellerProfile.PortfolioHeaderColor;
existing.PortfolionHeaderSize = sellerProfile.PortfolionHeaderSize; existing.PortfolionHeaderSize = sellerProfile.PortfolioHeaderSize;
existing.PortfolionHeaderUseImage = sellerProfile.PortfolionHeaderUseImage; existing.PortfolionHeaderUseImage = sellerProfile.PortfolioHeaderUseImage;
existing.PortfolionHeaderImageUrl = sellerProfile.PortfolionHeaderImageUrl; existing.PortfolionHeaderImageUrl = sellerProfile.PortfolioHeaderImageUrl;
existing.PortfolioBackgroundColor = sellerProfile.PortfolioBackgroundColor; existing.PortfolioBackgroundColor = sellerProfile.PortfolioBackgroundColor;
existing.PortfolioMasonry = sellerProfile.PortfolioMasonry; existing.PortfolioMasonry = sellerProfile.PortfolioMasonry;
existing.PortfolioColumns = sellerProfile.PortfolioColumns; existing.PortfolioColumns = sellerProfile.PortfolioColumns;