From 3161fe4fcbff0fbedbe803ef4de6298dad69e12d Mon Sep 17 00:00:00 2001 From: Deon George Date: Wed, 12 Mar 2025 22:00:18 +1100 Subject: [PATCH] Fix password hash select list, was not being editable when choosing edit mode --- resources/views/frames/create.blade.php | 2 +- resources/views/frames/dn.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/frames/create.blade.php b/resources/views/frames/create.blade.php index 4bb131b5..a6f187e4 100644 --- a/resources/views/frames/create.blade.php +++ b/resources/views/frames/create.blade.php @@ -85,7 +85,7 @@ }); // Our password type - $('div#userPassword .form-select').each(function() { + $('attribute#userPassword .form-select').each(function() { $(this).prop('disabled',false); }) diff --git a/resources/views/frames/dn.blade.php b/resources/views/frames/dn.blade.php index b74fcc4e..e36977a9 100644 --- a/resources/views/frames/dn.blade.php +++ b/resources/views/frames/dn.blade.php @@ -170,7 +170,7 @@ }); // Our password type - $('div#userPassword .form-select').each(function() { + $('attribute#userPassword .form-select').each(function() { $(this).prop('disabled',false); })