Increase hero image max size to 3840x2160 in admin UI
Build and Push Docker Image / build-and-push (push) Successful in 17s
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:
@@ -821,8 +821,8 @@ public partial class RegistryAdmin : ComponentBase
|
||||
{
|
||||
const long maxOriginalFileSize = 10 * 1024 * 1024; // 10 MB
|
||||
const long maxProcessedFileSize = 3 * 1024 * 1024; // 3 MB
|
||||
const int maxHeroImageWidth = 1920;
|
||||
const int maxHeroImageHeight = 1080;
|
||||
const int maxHeroImageWidth = 3840;
|
||||
const int maxHeroImageHeight = 2160;
|
||||
|
||||
var file = e.File;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user