mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
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:
parent
0abdc6261e
commit
9515a515de
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue