mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
Website: update variable name in signup.js (#34908)
Changes: - Fixed a bug in signup.js, which prevented users who were eligible for a render trial from being successfully assigned an instance.
This commit is contained in:
parent
1962ea7622
commit
f3749ba253
1 changed files with 1 additions and 1 deletions
2
website/api/controllers/entrance/signup.js
vendored
2
website/api/controllers/entrance/signup.js
vendored
|
|
@ -177,7 +177,7 @@ the account verification message.)`,
|
|||
if(fleetPremiumTrialType === 'render trial') {
|
||||
// If this user is eligable for a Render POV, we'll
|
||||
let renderInstancesThatCanBeAssignedToThisUser = await RenderProofOfValue.find({
|
||||
where: {status: 'ready-for-assignment', user: null},
|
||||
where: {status: 'ready for assignment', user: null},
|
||||
sort: 'createdAt DESC',
|
||||
limit: 1,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue