From ee728e69538b70ae7e79b91ff442e7df0a659bcb Mon Sep 17 00:00:00 2001 From: suryav9724 Date: Thu, 26 Dec 2024 23:40:01 +0530 Subject: [PATCH] Timeout duration error in account policy setting 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 --- src/views/SecurityAndAccess/UserManagement/ModalSettings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/SecurityAndAccess/UserManagement/ModalSettings.vue b/src/views/SecurityAndAccess/UserManagement/ModalSettings.vue index c5086f3de1..e853af350f 100644 --- a/src/views/SecurityAndAccess/UserManagement/ModalSettings.vue +++ b/src/views/SecurityAndAccess/UserManagement/ModalSettings.vue @@ -193,7 +193,7 @@ export default { } if (this.v$.form.unlockMethod.$dirty) { lockoutDuration = this.form.unlockMethod - ? this.form.lockoutDuration + ? parseInt(this.form.lockoutDuration) : 0; }