The radio box created using builderAPI could not be selected

version: 7.4.0.1
The radio box created with callCommand cannot be selected, 7.3 is ok

window.Asc.plugin.callCommand(() => {
      var oDocument = Api.GetDocument();
      var oCheckBoxForm = Api.CreateCheckBoxForm({
        key: "Marital status",
        tip: "Specify your marital status",
        required: true,
        placeholder: "Marital status",
        radio: true,
      });
      var oParagraph = oDocument.GetElement(0);
      oParagraph.AddElement(oCheckBoxForm);
      oParagraph.AddText(" Married");
      oParagraph.AddLineBreak();
      oCheckBoxForm = Api.CreateCheckBoxForm({
        key: "Marital status",
        tip: "Specify your marital status",
        required: true,
        placeholder: "Marital status",
        radio: true,
      });
      oParagraph.AddElement(oCheckBoxForm);
      oParagraph.AddText(" Single");
      oCheckBoxForm.SetChecked(true);
      oDocument.Push(oParagraph);
    });

Hello @GGbeng

Thank you for the macro. I was able to reproduce the issue.
We will analyze it and I will provide results as soon as possible.

I have found out that this behavior has been already registered in our internal tracking system.
Sorry for the inconvenience.