Param and Text Widget on Same Side of Build Container

Hello,

I’ve recently been running into issues with using the appbuilder components with multiple widgets sitting on the same side. I currently have a Text Widget and Param Widget connected with a merge component going into one Build Container widget (see image attached). Sometimes, both widgets appear on the right column, but other times only the text widget shows up. I’m unsure as to why this happens or what causes it, but I would like to know what limitations this has. Please let me know!

The data you are merging is in different tree branches, which is messing up the data structure of the container and app (you can see that you are creating a tree of containers instead of a single container with several widgets). You can fix this by flattening the inputs of the Merge component (D1 and D2) to make sure you send a list of widgets to the Container component.