Hello,
I am building an Asset Management tool.
I have an Upload Image control thats working and patching and displaying correctly (ViewAssets.Selected.Image - working).
I want to be able to change the image, I was trying: (Checking the gallery, but allowing me to swap image out if needed)
If(
!IsBlank(ViewAssets.Selected.Image),
ViewAssets.Selected.Image,
If(
IsBlank(AddMediaButton1_1.Media),
SampleImage,
AddMediaButton1_1.Media
)
)
Logically this seems sound but Im getting an error, EXPECTED IMAGE VALUE.