From 7d089234448f4f2924b0eae728a3f45f84f97567 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Wed, 15 Apr 2026 11:01:22 +0200 Subject: [PATCH] Remove unused bandEditorExpanded field from BandGridBase The protected bool bandEditorExpanded, which tracked the expansion state of the band editor, has been removed from BandGridBase as it is no longer used. This helps clean up unused state from the component. --- DbFirst.BlazorWebApp/Components/BandGridBase.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/DbFirst.BlazorWebApp/Components/BandGridBase.cs b/DbFirst.BlazorWebApp/Components/BandGridBase.cs index 62517e8..e35aba6 100644 --- a/DbFirst.BlazorWebApp/Components/BandGridBase.cs +++ b/DbFirst.BlazorWebApp/Components/BandGridBase.cs @@ -21,7 +21,6 @@ public abstract class BandGridBase : ComponentBase protected Dictionary columnLookup = new(); protected string? layoutUser; protected bool gridLayoutApplied; - protected bool bandEditorExpanded; protected IGrid? gridRef; // --- SizeMode ---