From 8ebbcf6e80c38e3c722fd652a515aed755f2ddc4 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 7 Jul 2025 15:55:31 +0100 Subject: [PATCH] Removed console commands Signed-off-by: snipe --- resources/views/users/edit.blade.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/views/users/edit.blade.php b/resources/views/users/edit.blade.php index 4e2293f59b..0062a7210e 100755 --- a/resources/views/users/edit.blade.php +++ b/resources/views/users/edit.blade.php @@ -639,11 +639,9 @@ $(document).ready(function() { @if (!config('app.lock_passwords')) if (this.value.length > 5){ - console.log('email field is ' + this.value.length + ' - enable the checkbox'); $('#email_user_checkbox').prop("disabled", false); $("#email_user_checkbox").parent().removeClass("form-control--disabled"); } else { - console.log('email field is ' + this.value.length + ' - DISABLE the checkbox'); $('#email_user_checkbox').prop("disabled", true); $('#email_user_checkbox').prop("checked", false); $("#email_user_checkbox").parent().addClass("form-control--disabled");