Extra quote

merge-requests/30/head
Bob Mottram 2021-07-27 19:48:11 +01:00
parent b1b3d1712f
commit b8496f9533
1 changed files with 1 additions and 1 deletions

View File

@ -1203,7 +1203,7 @@ def editCurrencyField(label: str, name: str, value: str = "0.00",
'<label class="labels">' + label + '</label><br>\n' + \
' <input type="text" name="' + name + '" value="' + \
str(value) + '"' + placeholderStr + ' ' + \
'" pattern="^\\d{1,3}(,\\d{3})*(\\.\\d+)?" data-type="currency">\n'
' pattern="^\\d{1,3}(,\\d{3})*(\\.\\d+)?" data-type="currency">\n'
def editCheckBox(label: str, name: str, checked: bool = False) -> str: