You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- wp:cwp/name {"isRequired":true,"label":"Nimi","id":"e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D","field_name":"name-e48ec1","messages":{"0":{},"empty":"Please fill out this field!","invalidName":"The name {{value}} is not valid!","fieldName":"name"},"condition":{"field":"select-3d4ac9","condition":"===","value":""},"adminId":{"value":"name_e48ec1","default":"name_e48ec1"}} -->
<div class="wp-block-cwp-name cwp-name cwp-field"><div class="cwp-field-set"><label for="e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D">Nimi <abbr title="required" aria-label="required">*</abbr></label><div class="cwp-field-with-elements"><input id="e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D" aria-label="Nimi" data-cwp-field="true" name="e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D" title="The name {{value}} is not valid!" data-errors="{"mismatch":"The name {{value}} is not valid!","empty":"Please fill out this field!"}" type="text" data-rule="false" placeholder="" required/></div></div></div>
<!-- /wp:cwp/name -->
It seems to be generating these IDs somehow, even if I remove %3D from the code they come back.
JS error they give looks like this:
jquery-3.2.1.min.js:2 Uncaught Error: Syntax error, unrecognized expression: input#e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D
at ga.error (jquery-3.2.1.min.js:2:13370)
at ga.tokenize (jquery-3.2.1.min.js:2:19359)
at ga.select (jquery-3.2.1.min.js:2:22249)
at Function.ga [as find] (jquery-3.2.1.min.js:2:7208)
at r.fn.init.find (jquery-3.2.1.min.js:2:24940)
at new r.fn.init (jquery-3.2.1.min.js:2:25430)
at r (jquery-3.2.1.min.js:2:601)
at cipFields.setUniqueId (kphc.js:820:19)
at HTMLInputElement.<anonymous> (kphc.js:844:14)
at Function.each (jquery-3.2.1.min.js:2:2715)
The text was updated successfully, but these errors were encountered:
Hello
Gutenberg Forms seems to be using some sort of base64 to generate ID's, that doesn't work since Base64 includes
=
at the end nearly randomly.E.g.
e48ec1__LS1uYW1lLWU0OGVjMS10cnVlLW5hbWUtbmFtZV9lNDhlYzE%3D
Notice
%3D
this is causing JS errors.It seems to be generating these IDs somehow, even if I remove
%3D
from the code they come back.JS error they give looks like this:
The text was updated successfully, but these errors were encountered: