@@ -, +, @@ block of opac-account.tt --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt @@ -143,7 +143,7 @@ $( document ).ready(function() { return new Promise(function(resolve, reject) { var threshold = $(self).data('threshold'); var help = $(self).parent().siblings('.help-block'); - if(threshold == '' || threshold <= total) { + if(!threshold || threshold == '' || threshold <= total) { $(self).prop('disabled', false); help.addClass('hide'); } else { --