Website: Increase self-service license dispenser host cap (#11469)

Changes:
- Changed the self-service license dispenser cap from 100 hosts to 999
hosts.
This commit is contained in:
Eric 2023-05-02 16:45:52 -05:00 committed by GitHub
parent 0abdc6261e
commit 9515a515de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ parasails.registerPage('new-license', {
this.showQuotedPrice = true;
this.quotedPrice = quote.quotedPrice;
this.numberOfHostsQuoted = quote.numberOfHosts;
if(quote.numberOfHosts <= 100) {
if(quote.numberOfHosts <= 999) {
this.formData.quoteId = quote.id;
this.showBillingForm = true;
}