Skip to content

Commit

Permalink
Timeout duration error in account policy setting
Browse files Browse the repository at this point in the history
On user management page fix the error while save the account policy
settings with the automatic after timeout.

while changing the timeout duration the value is in string but the
payload should be integer.

Add the parseInt in the timeout duration value while save the account
policy settings with the automatic after timeout.

Change-Id: I69ab13af3fd34e4128d3f01b71b0ffd092fe9a06
Signed-off-by: suryav9724 <[email protected]>
  • Loading branch information
suryav9724 committed Dec 26, 2024
1 parent 20ce44a commit ee728e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default {
}
if (this.v$.form.unlockMethod.$dirty) {
lockoutDuration = this.form.unlockMethod
? this.form.lockoutDuration
? parseInt(this.form.lockoutDuration)
: 0;
}
Expand Down

0 comments on commit ee728e6

Please sign in to comment.