Skip to content

Commit

Permalink
Fix - Correction du listing des transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Nov 30, 2020
1 parent 1a4e097 commit 7437555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sheaft.Web.Manage/Controllers/TransfersController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public async Task<IActionResult> Index(CancellationToken token, TransactionStatu
if (take > 100)
take = 100;

var query = _context.Transfers.Where(t => t.Status != TransactionStatus.Succeeded).AsNoTracking();
var query = _context.Transfers.AsNoTracking();

var requestUser = await GetRequestUser(token);
if (requestUser.IsImpersonating)
Expand Down

0 comments on commit 7437555

Please sign in to comment.