From a04c67dff21dcbf903ac6a9f46477529d92be0f0 Mon Sep 17 00:00:00 2001 From: shivambareria Date: Sun, 18 Jun 2023 18:17:13 +0530 Subject: [PATCH] + (Finance) Fixed Pledge List to always display the scheduled transaction even if no 'Date Range' entered. (Fixes #3423) --- RockWeb/Blocks/Finance/PledgeList.ascx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RockWeb/Blocks/Finance/PledgeList.ascx.cs b/RockWeb/Blocks/Finance/PledgeList.ascx.cs index 641ca5d2368..46770f0e2a0 100644 --- a/RockWeb/Blocks/Finance/PledgeList.ascx.cs +++ b/RockWeb/Blocks/Finance/PledgeList.ascx.cs @@ -194,12 +194,12 @@ private void GPledges_RowDataBound( object sender, System.Web.UI.WebControls.Gri var pledge = ( FinancialPledge ) e.Row.DataItem; if ( pledge.StartDate == DateTime.MinValue ) { - var cell = e.Row.Cells[4].Text = string.Empty; + var cell = e.Row.Cells[5].Text = string.Empty; } if ( pledge.EndDate.ToShortDateString() == DateTime.MaxValue.ToShortDateString() ) { - var cell = e.Row.Cells[5].Text = string.Empty; + var cell = e.Row.Cells[6].Text = string.Empty; } } }