mirror of
https://github.com/lnbits/lnbits.git
synced 2025-07-08 22:40:35 +02:00
Update index.html
This commit is contained in:
@ -470,11 +470,11 @@ function editlinkcont(){
|
|||||||
return amt
|
return amt
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isNaN(maxamt) || maxamt < 10 || maxamt > 1000000) {
|
if (isNaN(maxamt) || maxamt < 10) {
|
||||||
document.getElementById("error2").innerHTML = "Max 10 - 1000000 and must be higher than min"
|
document.getElementById("error2").innerHTML = "Max 10 - 1000000 and must be higher than min"
|
||||||
return amt
|
return amt
|
||||||
}
|
}
|
||||||
if (isNaN(minamt) || minamt < 1 || minamt > 1000000 || minamt > maxamt) {
|
if (isNaN(minamt) || minamt < 1 || minamt > maxamt) {
|
||||||
document.getElementById("error2").innerHTML = "Min 1 - 1000000 and must be lower than max"
|
document.getElementById("error2").innerHTML = "Min 1 - 1000000 and must be lower than max"
|
||||||
return amt
|
return amt
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user