Text editor parameter within subgroup parameter closes automatically when editing

Hello, I’ve detected a bug in the parameters when defining text editor parameters within subgroups of elements. For example, with this structure of parameters, the text editor in the subgroup of elements closes automatically when clicked to open the window to enter text, preventing any editing.

{
  "items" : {
    "type" : "group[]",
    "label" : "Items",
    "itemLabel" : "{{index}}. {{title}}",
    "params" : {
      "title" : {
        "type" : "text",
        "label" : "Title"
      },
      "desc" : { 
        "type" : "text-editor", // --> It opens correctly
        "label" : "Description" 
      },
      "subitems" : {
        "type" : "group[]",
        "label" : "Subitems",
        "itemLabel" : "{{index}}. {{name}}",
        "params" : {
          "name" : {
            "type" : "text",
            "label" : "Name"
          },
          "info" : { 
            "type" : "text-editor", // --> It closes on click
            "label" : "Info" 
          }
        }
      }
    }
  }
}

Could you review this for a future update? And in the meantime, do you have any suggestions for a temporary workaround?

Thanks in advance

Hey Guillermo,

I have replicated the issue so I’ll list this to be queued for investigation by our development team.

There is regretfully no workaround for this.

Please stay tuned for succeeding updates.