From c0acb067b31265ff6ba99280f3e1b7be1d1775d4 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Thu, 21 May 2026 10:11:30 +1000 Subject: [PATCH] feat: Handle BackgroundSize in SlidesController Edit --- Controllers/SlidesController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Controllers/SlidesController.cs b/Controllers/SlidesController.cs index ec802f5..fa76e97 100644 --- a/Controllers/SlidesController.cs +++ b/Controllers/SlidesController.cs @@ -70,6 +70,7 @@ public class SlidesController : Controller existing.CustomCss = slide.CustomCss; existing.BackgroundColor = slide.BackgroundColor; existing.BackgroundImage = slide.BackgroundImage; + existing.BackgroundSize = slide.BackgroundSize; existing.UpdatedAt = DateTime.UtcNow; await _db.SaveChangesAsync();