From fd3d3f0bc4679a3d82db100cb230c8e0a484c24c Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 11 Feb 2026 15:30:17 +0000
Subject: [PATCH] =AuthManager.js and Referral.js minor fixes - registration form was broken
---
assets/js/concise/FormController.js | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/assets/js/concise/FormController.js b/assets/js/concise/FormController.js
index bac1cd6..11629f3 100644
--- a/assets/js/concise/FormController.js
+++ b/assets/js/concise/FormController.js
@@ -358,6 +358,7 @@
}
handleInput(e){
+ if (e.target.closest('[data-ignore]') || this.isRestoring) return;
let form = this.getForm(e.target);
if (!form) return;
@@ -1282,7 +1283,7 @@
if (!form) return;
// Get all current data for the collection
- const value = this.getFieldValue(field.querySelector('input, select, textarea'));
+ const value = this.getFieldValue(field);
this.updateItem(field.dataset.field, value, form);
}
/**********************************************************************
--
Gitblit v1.10.0