Why am I getting this error?
I’m trying to display values from Data Type: Race Games that contains the values: “Combat(Boolean)=yes”, “Online(Boolean)=Yes”, “Combat&Online(List of text)=Mario Kart”
which should display the data text Mario Kart.
But it’s giving me that warning and I don’t know why? I used the workflow - after clicking a button it will display the values into “Custom Show Results” with the constraints shown in the picture.
You’re trying to display data in a group which doesn’t have a defined content-type… and is therefore not able to display data.
Not only that, but groups can only hold a single data item, whereas you’re drying to display a list.
So, if you’re intending to ‘display’ a single thing, firstly you need to ensue the the group you’re trying to display it in has the correct content type set, and then specify which item from the list you want to display.
If you are actually intending to ‘display’ a list, rather than a single thing, then you’ll need to use a RepeatingGroup instead of a regular Group.
1 Like