I am trying to configure the text fields so that they cannot be copied or pasted, my js code affects everything that says "input type: text" but despite this the platform's text fields do not take the configuration and They still let you copy and paste. Below is my js code which I apply in the form layout. <script> var inputs = document.querySelectorAll('input[type="text"]'); inputs.forEach(function(input) { input.addEventListener('copy', function(e) { e.preventDefault(); });