Compare commits

...

2 Commits

Author SHA1 Message Date
d64870bf4f
Fix FOUT causing layout shift on full page load
All checks were successful
Docker Image CI / build (push) Successful in 3m5s
2024-10-13 16:45:16 +01:00
00e17497bf
Fix error saving transaction with a promotion with items 2024-10-13 16:17:35 +01:00
2 changed files with 7 additions and 4 deletions

View File

@ -11,6 +11,7 @@
<base href="/" />
<link rel="preload" as="font" type="font/woff2" href="lib/inter/files/inter-latin-wght-normal.woff2" crossorigin />
<link rel="stylesheet" type="text/css" href="@Assets["lib/inter/index.css"]" data-turbo-track="reload" />
<link rel="stylesheet" type="text/css" href="@Assets["css/main.css"]" data-turbo-track="reload" />

View File

@ -243,11 +243,13 @@ public class TransactionsController : Controller
using var dbContext = dbContextFactory.CreateDbContext();
foreach (var item in transaction.Items)
{
item.Item = null;
}
// Work around EF trying to insert items by explicitly tracking them as unchanged
dbContext.Items.AttachRange(
transaction.Items
.Select(item => item.Item!)
.Concat(transaction.Promotions.SelectMany(promotion => promotion.Items)));
dbContext.Items.AttachRange(transaction.Promotions.SelectMany(promotion => promotion.Items));
dbContext.Transactions.Add(transaction);
await dbContext.SaveChangesAsync();