From ac444cba221832c012c0435fdc8339fe9f37febb Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 11 May 2026 18:35:04 +0000
Subject: [PATCH] =Some changes to the CRUD.js editing, timeline post configuration

---
 assets/js/concise/UtilityFunctions.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/assets/js/concise/UtilityFunctions.js b/assets/js/concise/UtilityFunctions.js
index 2731174..ca5944e 100644
--- a/assets/js/concise/UtilityFunctions.js
+++ b/assets/js/concise/UtilityFunctions.js
@@ -418,9 +418,13 @@
 		console.warn('prefixInput called with null/undefined input');
 		return;
 	}
+	// console.log('Prefixing input: ', input);
+	// console.log('With prefix: ', prefix);
+	// console.log('Wrapper: ', wrapper);
 	const oldId = input.id;
 	const newId = replace ? prefix : `${prefix}${input.name}`;
-
+	// console.log('Old ID: ', oldId);
+	// console.log('New ID: ', newId);
 	// Search for label within wrapper if provided, otherwise use existing logic
 	let label = null;
 

--
Gitblit v1.10.0