Skip to content

Commit

Permalink
+ Fixed Tag Report so that after sorting it deletes the correct item (F…
Browse files Browse the repository at this point in the history
…ixes #1398).
  • Loading branch information
nairdo committed Feb 16, 2016
1 parent 933e322 commit 912329d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RockWeb/Blocks/Core/TagReport.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ protected override void OnInit( EventArgs e )
gReport.Columns.Add( deleteField );
deleteField.Click += gReport_Delete;

BindGrid();
if ( !Page.IsPostBack )
{
BindGrid();
}
}
}
}
Expand Down

0 comments on commit 912329d

Please sign in to comment.