Hi all - I have a structure field on my site’s blueprint (so on main page of panel) that I want to show as options in a select form in a seperate blueprint. For some reason I can’t get it to work when it’s querying from the site blueprint and wondered if anyone had ideas as to why? Thanks!
Site blueprint
sections:
areas:
type: fields
fields:
areaList:
label: Project Areas
type: structure
fields:
area:
label: Area Name
type: text
Project blueprint:
location:
label: Area
type: select
options: query
query:
fetch: site.find('home').areaList.toStructure
text: “{{ structureItem.text }}”
value: “{{ structureItem.key }}”