POS - CustomAmount disabled by default also for App

This commit is contained in:
daviogg 2022-09-17 08:42:44 +02:00 committed by Andrew Camilleri
parent e0cbb7bede
commit 0e4544b2da

View file

@ -25,7 +25,7 @@ namespace BTCPayServer.Client.Models
public string Template { get; set; } = null;
[JsonConverter(typeof(StringEnumConverter))]
public PosViewType DefaultView { get; set; }
public bool ShowCustomAmount { get; set; } = true;
public bool ShowCustomAmount { get; set; } = false;
public bool ShowDiscount { get; set; } = true;
public bool EnableTips { get; set; } = true;
public string CustomAmountPayButtonText { get; set; } = null;