diff --git a/BTCPayServer/Models/InvoicingModels/CreateInvoiceModel.cs b/BTCPayServer/Models/InvoicingModels/CreateInvoiceModel.cs index 058cd2a78..8bee6a4a0 100644 --- a/BTCPayServer/Models/InvoicingModels/CreateInvoiceModel.cs +++ b/BTCPayServer/Models/InvoicingModels/CreateInvoiceModel.cs @@ -38,7 +38,7 @@ namespace BTCPayServer.Models.InvoicingModels get; set; } - [Display(Name = "Default payment method on checkout")] + [DisplayName("Default payment method on checkout")] public string DefaultPaymentMethod { get; set; @@ -58,7 +58,7 @@ namespace BTCPayServer.Models.InvoicingModels } [Uri] - [DisplayName("Notification Url")] + [DisplayName("Notification URL")] public string NotificationUrl { get; set; @@ -89,7 +89,7 @@ namespace BTCPayServer.Models.InvoicingModels get; set; } - [Display(Name = "Require Refund Email")] + [DisplayName("Require Refund Email")] public RequiresRefundEmail RequiresRefundEmail { get; set; diff --git a/BTCPayServer/Views/Invoice/CreateInvoice.cshtml b/BTCPayServer/Views/Invoice/CreateInvoice.cshtml index 86fd5ca90..ae04b36c1 100644 --- a/BTCPayServer/Views/Invoice/CreateInvoice.cshtml +++ b/BTCPayServer/Views/Invoice/CreateInvoice.cshtml @@ -1,7 +1,7 @@ @model BTCPayServer.Models.InvoicingModels.CreateInvoiceModel @using BTCPayServer.Services.Apps @{ - ViewData.SetActivePageAndTitle(InvoiceNavPages.Create, "Create an invoice"); + ViewData.SetActivePageAndTitle(InvoiceNavPages.Create, "Create Invoice"); } @section PageFootContent { @@ -32,9 +32,15 @@