We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6946417 + b9fea45 commit 875e089Copy full SHA for 875e089
1 file changed
Zero-K.info/Views/Contributions/ContributionsIndex.cshtml
@@ -77,7 +77,7 @@
77
78
@{
79
var grid = new UniGrid<Contribution>(Model);
80
- grid.AddCol("Date", x => Html.PrintDate(x.Time)).SetSort(x => x.Time).SetWidth("150px");
+ grid.AddCol("Date", x => Html.PrintDate(x.Time.ToUniversalTime())).SetSort(x => x.Time).SetWidth("150px");
81
grid.AddCol("Name", NameCol).SetSort(x => x.AccountByAccountID != null ? x.AccountByAccountID.Name : null).SetWidth("250px");
82
grid.AddCol("Euro", x => x.Euros.Value.ToString("F2")).SetSort(x => x.Euros).SetWidth("100px");
83
if (Global.IsModerator)
0 commit comments