Fix: Improve the responsivity of the Reporting page (#6846) (#6841)

This commit is contained in:
Nicolas Dorier
2025-07-17 15:43:32 +09:00
committed by GitHub
parent e83a12d995
commit cd42f1a53d
32 changed files with 887 additions and 202 deletions

View File

@@ -27,7 +27,7 @@ namespace BTCPayServer.Models.StoreViewModels
[Display(Name = "Apply the brand color to the store's backend as well")]
public bool ApplyBrandColorToBackend { get; set; }
[Display(Name = "Logo")]
public IFormFile LogoFile { get; set; }
public string LogoUrl { get; set; }
@@ -56,6 +56,10 @@ namespace BTCPayServer.Models.StoreViewModels
[MaxLength(10)]
public string DefaultCurrency { get; set; }
[Display(Name = "Additional rates to track")]
[MaxLength(30)]
public string AdditionalTrackedRates { get; set; }
[Display(Name = "Minimum acceptable expiration time for BOLT11 for refunds")]
[Range(0, 365 * 10)]
public long BOLT11Expiration { get; set; }