Increase hero image max size to 3840x2160 in admin UI
Build and Push Docker Image / build-and-push (push) Successful in 17s

Raised the maximum allowed hero image dimensions from 1920x1080 to 3840x2160 in the RegistryAdmin component, enabling support for higher-resolution uploads.
This commit is contained in:
Arne Moerman
2026-07-25 19:15:50 +02:00
parent cb073ee3d8
commit 14fec4fefb
@@ -821,8 +821,8 @@ public partial class RegistryAdmin : ComponentBase
{ {
const long maxOriginalFileSize = 10 * 1024 * 1024; // 10 MB const long maxOriginalFileSize = 10 * 1024 * 1024; // 10 MB
const long maxProcessedFileSize = 3 * 1024 * 1024; // 3 MB const long maxProcessedFileSize = 3 * 1024 * 1024; // 3 MB
const int maxHeroImageWidth = 1920; const int maxHeroImageWidth = 3840;
const int maxHeroImageHeight = 1080; const int maxHeroImageHeight = 2160;
var file = e.File; var file = e.File;