Fix toggling validated on page 2 of our AKAs, we need to use jquery delegated targets
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 31s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m32s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2025-04-15 17:11:01 +10:00
parent c49daadc5f
commit 3ca16f0d87

View File

@ -708,9 +708,9 @@
],
});
$('data.validated').on('click',function(item) {
$('table#address_table').on('click','data.validated',function(item) {
that = $(this);
var values = item.delegateTarget.value.split(':');
var values = item.currentTarget.value.split(':');
var icon = that.find('i');
if (values[1] === '1') {