We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe5ddc commit b741bafCopy full SHA for b741baf
resources/assets/component.js
@@ -1008,7 +1008,7 @@ window.ComponentPlane = class {
1008
for (const pair of formdata.entries()) {
1009
let key = pair[0];
1010
let val = pair[1];
1011
- if(/\[.*\]/.test(key) && /\[.*\]/.test(val) && (typeof val !== 'object')){
+ if(/\[.*\]/.test(key) && /^\[.*\]$/.test(val) && (typeof val === 'string')){
1012
val = JSON.parse(val);
1013
if(Array.isArray(val) && val.length>0){
1014
val.forEach((v)=>{
0 commit comments