I'm creating a component that has the user choose an image (using the addpicture control) and select a text option from a dropdown. The component has a custom output property named "Output" of type "Record". Once the user clicks a button in the control to confirm their input, the following code is used to set the output property:
Set(output, {
image:pd_AddMediaButton.Media,
txt:pd_dropdown.Selected.Value
});Now this seems to work fine, except for one part: the 'txt' property in the output record shows a text like "appres://blobmanager/046df" or something.
Am I doing something wrong? Or is this a bug? If I display the value of "pd_dropdown.Selected.Value" in the component, it does display the proper text value.